Door Operation Types, Parts, and Performance Criteria

DOOR OPERATION TYPES

  • Single side hung
  • Double lead
  • Sliding
  • Swinging (oscilante)
  • Centre folding (cierre de casa, varias hojas)
  • Folding (solo dos hojas)
  • Revolving
  • Overhead up-and-over (garage)

PARTS OF A DOOR

  1. Frame
  2. Leaf
  3. Threshold
  4. Connecting jamb
  5. Hinge
  6. Lock/hatch

PERFORMANCE CRITERIA FOR EXTERNAL/INTERNAL DOORS

External Entrance

  • Resistance to wind load (1,2,3,4,5, A,B,C)
  • Watertightness (1A-9A)

Internal Entrance Door

  • Air permeability(1,2,3,4)
  • Thermal insulation criteria (declared value)
  • Burglary resistance (1,2,3,4,5,6)

Internal

Read More

Understanding and Troubleshooting PC Power Supplies: A Comprehensive Guide

Understanding and Troubleshooting PC Power Supplies

The Power Supply Unit (PSU)

The PSU is a crucial component that converts AC power to DC and delivers the required voltages to various computer parts. It’s physically attached to the case and often uses a fan for cooling.

Types of Power Supplies

There are two main types of PSUs:

  • Switching: More efficient, smaller, and lighter, but can generate electromagnetic interference (EMI).
  • Linear: Uses a transformer, generates less EMI, but is larger and less efficient.
Read More

IR Remote Control for Servo Motor with Arduino

Code Explanation

This code controls a servo motor using an IR remote and an Arduino. It includes functions to decode IR signals, validate remote codes, and perform actions based on the received key presses.

IR Remote Codes

The code defines arrays to store IR codes for both white and black remotes, along with their corresponding key names. These codes are specific to the Robojax IR remote but can be modified for other remotes.

White Remote Codes (Non-PCB Version)

unsigned int whiteRemote[] = { ... };

White
Read More

CFM56-5B Engine Systems Quiz: Test Your Knowledge

CFM56-5B Engine Systems Quiz

Fuel System

Question 1

The fuel bypassed from the Hydro-Mechanical Unit (HMU) is used to:

  1. Actuates the Variable Stator Vanes (VSVs) and Variable Bleed Valves (VBVs)
  2. Provides Fuel Flow meter information
  3. Cool the Integrated Drive Generator (IDG) Oil (IDG Oil Cooler)

Question 2

What controls the Fuel Return Valve (FRV)?

  1. The HMU
  2. The Generator Control Unit (GCU) depending on IDG temperature
  3. The Electronic Control Unit (ECU)

Question 3

The Variable Bleed Valve (VBV) system provides:

  1. Proper
Read More

Visual Basic Programming Tutorial: Functions, Loops, Arrays, and File Operations

Code

Imports System.Drawing.Printing

Public Class Form1

 Dim pSize As PaperSize

 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles

MyBase.Load

 Dim InstPrinters As String

 ‘ Find all printers installed

 For Each InstPrinters In _

 PrinterSettings.InstalledPrinters

 cboPrinters.Items.Add(InstPrinters)

 Next InstPrinters

 ‘ Set the combo to the first printer in the list

 cboPrinters.SelectedIndex = 0

 ‘ Put the available paper sizes in a combo box for the

Read More

Cisco Router Configuration for Secure Network Connectivity

Router R1 Configuration

Basic Configuration

no ip domain lookup
hostname R1
enable secret ciscoenpass
line console 0
password ciscoconpass
login
exit
security passwords min-length 10
service password-encryption
banner motd #Unauthorized Access is Prohibited#

Interface Configuration

interface GigabitEthernet0/0/0
description Connection to R2
ip address 198.51.100.1 255.255.255.252
no shutdown
interface GigabitEthernet0/0/1
description Connection to S2
ip address 192.168.1.1 255.255.255.0
no shutdown
interface GigabitEthernet0/
Read More