answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Where is Y1 and common located on ac circuit board?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you know if you have a single stage or multistage heating and air conditioning system?

Take the thermostats cover off and expose the low voltage wiring, Y or Yellow is the AC circuit, Y1 will be 1st stage cooling, Y2 will be 2nd stage cooling, You may also look at the furnaces low voltage terminals for the various circuits. You will see screws/terminals marked, R /Red, W /White, Y /Yellow, G /Green and C /Common. The R terminal is where the 24 volt "hot leg" of power enters the thermostat , for the thermostat to send the 24 volts to your desired mode/ circuit. W = Heat, Y = Cool, G = Fan and C is the "common" or neutral leg of 24 volt power. Common is akin to the negative on a battery, it is called Common as every 24 volt circuit terminates on Common to complete the circuit. If you had a 2 stage heat system there would be a W1 and a W2. Same with the AC mode. Y1= 1st stage cooling and Y2 = 2nd stage cooling.


C program to design a car?

#include<stdio.h> #include<graphics.h> #include<math.h> #include<conio.h> #include<dos.h> #include<alloc.h> #include<stdlib.h> #define RAD 3.141592/180 class fig { private: int x1,x2,y1,y2,xinc,yinc; public: void car() { xinc=10;yinc=10; x1=y1=10; x2=x1+90;y2=y1+35; int poly[]={x1+5,y1+10,x1+15,y1+10,x1+20,y1,x1+50,y1,x1+60,y1+10,x1+90,y1+17,x1+90,y1+20,x1+5,y1+20,x1+5,y1+10}; setfillstyle(SOLID_FILL,LIGHTGRAY); setlinestyle(SOLID_LINE,1,2); setcolor(4); drawpoly(9,poly); line(x1+15,y1+10,x1+60,y1+10); line(x1+20,y1+10,x1+20,y1); line(x1+35,y1+10,x1+35,y1); line(x1+50,y1+10,x1+50,y1); floodfill(x1+18,y1+8,4); floodfill(x1+28,y1+8,4); floodfill(x1+36,y1+8,4); floodfill(x1+52,y1+8,4); setfillstyle(SOLID_FILL,4); floodfill(x1+18,y1+12,4); setfillstyle(SOLID_FILL,BLUE); bar(x1+5,y1+20,x1+90,y1+25); setcolor(DARKGRAY); circle(x1+20,y1+25,8); circle(x1+20,y1+25,6); setfillstyle(1,8); floodfill(x1+21,y1+25,8); circle(x1+70,y1+25,8); circle(x1+70,y1+25,6); floodfill(x1+71,y1+25,8); int size=imagesize(x1,y1,x2,y2); void far *buf=farmalloc(size); getimage(x1,y1,x2,y2,buf); while(!kbhit()) { putimage(x1,y1,buf,XOR_PUT); x1+=xinc;x2+=xinc; if(x2<(getmaxx()-10)) putimage(x1,y1,buf,COPY_PUT); else { cleardevice(); x1=10;x2=x1+90; y1+=yinc;y2+=yinc; if(y2<(getmaxy()-10)) { putimage(x1,y1,buf,COPY_PUT); } else {y1=10;y2=y1+35;} } delay(200); } farfree(buf); getch(); } } } } void main() { int gd=DETECT,gm; initgraph(&gd,&gm,"d:\\cplus"); fig f; f.car(); cleardevice(); closegraph(); }


How do you draw a square using line command?

Line (x1, y1, x2, y1); Line (x2, y1, x2, y2); Line (x2, y2, x1, y2); Line (x1, y2, x1, y1);


How do you draw a line on Java Graphics?

Drawing a line from (x1, y1) to (x2, y2) using a default Graphics object: graphics.drawLine(x1, y1, x2, y2);


What is the formula for potential difference in series circuit?

formula for determining potential difference

Related questions

How can you tell if the circuit board in your AC heat pump is bad?

On the board there is a R terminal which is usually the red wire and a common. Make sure you have 24v AC power to them even with the thermostat inside is turned off. This powers the board and defrost timer in the heat pump mode. After you've checked that turn the thermostat on in the cooling mode. Check voltage between Y1 and Common. You should have 24VAC. This means the thermostat inside is telling the outside unit to run. Keep in mind some thermostats and all defrost control boards have a 5 minute time delay. Once you have verified the 24VAC coming from the inside unit on Y1 and Common and the five minute delay has passed Check the Y1 out terminal on the board to common you should have 24 volts there as well if you do not then the board is bad as long as you have the 24 VAC between R and Common I mentioned earlier.


What formula with functions can you enter to calculate the range of values in Y1 to Y10?

There are many calculations that could be done: =SUM(Y1:Y10) =AVERAGE(Y1:Y10) =MAX(Y1:Y10) =MIN(Y1:Y10) =COUNT(Y1:Y10)


What is 5x-y1?

5x-y1 = 4


How do you know if you have a single stage or multistage heating and air conditioning system?

Take the thermostats cover off and expose the low voltage wiring, Y or Yellow is the AC circuit, Y1 will be 1st stage cooling, Y2 will be 2nd stage cooling, You may also look at the furnaces low voltage terminals for the various circuits. You will see screws/terminals marked, R /Red, W /White, Y /Yellow, G /Green and C /Common. The R terminal is where the 24 volt "hot leg" of power enters the thermostat , for the thermostat to send the 24 volts to your desired mode/ circuit. W = Heat, Y = Cool, G = Fan and C is the "common" or neutral leg of 24 volt power. Common is akin to the negative on a battery, it is called Common as every 24 volt circuit terminates on Common to complete the circuit. If you had a 2 stage heat system there would be a W1 and a W2. Same with the AC mode. Y1= 1st stage cooling and Y2 = 2nd stage cooling.


C program to design a car?

#include<stdio.h> #include<graphics.h> #include<math.h> #include<conio.h> #include<dos.h> #include<alloc.h> #include<stdlib.h> #define RAD 3.141592/180 class fig { private: int x1,x2,y1,y2,xinc,yinc; public: void car() { xinc=10;yinc=10; x1=y1=10; x2=x1+90;y2=y1+35; int poly[]={x1+5,y1+10,x1+15,y1+10,x1+20,y1,x1+50,y1,x1+60,y1+10,x1+90,y1+17,x1+90,y1+20,x1+5,y1+20,x1+5,y1+10}; setfillstyle(SOLID_FILL,LIGHTGRAY); setlinestyle(SOLID_LINE,1,2); setcolor(4); drawpoly(9,poly); line(x1+15,y1+10,x1+60,y1+10); line(x1+20,y1+10,x1+20,y1); line(x1+35,y1+10,x1+35,y1); line(x1+50,y1+10,x1+50,y1); floodfill(x1+18,y1+8,4); floodfill(x1+28,y1+8,4); floodfill(x1+36,y1+8,4); floodfill(x1+52,y1+8,4); setfillstyle(SOLID_FILL,4); floodfill(x1+18,y1+12,4); setfillstyle(SOLID_FILL,BLUE); bar(x1+5,y1+20,x1+90,y1+25); setcolor(DARKGRAY); circle(x1+20,y1+25,8); circle(x1+20,y1+25,6); setfillstyle(1,8); floodfill(x1+21,y1+25,8); circle(x1+70,y1+25,8); circle(x1+70,y1+25,6); floodfill(x1+71,y1+25,8); int size=imagesize(x1,y1,x2,y2); void far *buf=farmalloc(size); getimage(x1,y1,x2,y2,buf); while(!kbhit()) { putimage(x1,y1,buf,XOR_PUT); x1+=xinc;x2+=xinc; if(x2<(getmaxx()-10)) putimage(x1,y1,buf,COPY_PUT); else { cleardevice(); x1=10;x2=x1+90; y1+=yinc;y2+=yinc; if(y2<(getmaxy()-10)) { putimage(x1,y1,buf,COPY_PUT); } else {y1=10;y2=y1+35;} } delay(200); } farfree(buf); getch(); } } } } void main() { int gd=DETECT,gm; initgraph(&gd,&gm,"d:\\cplus"); fig f; f.car(); cleardevice(); closegraph(); }


How do you draw a square using line command?

Line (x1, y1, x2, y1); Line (x2, y1, x2, y2); Line (x2, y2, x1, y2); Line (x1, y2, x1, y1);


When using the slope formula does it have to be (y2-y1)(x2-x1) or can it be (y1-y2)(x1-x2)?

If you mean: (y2-y1)/(x2-x1) and (y1-y2)/(x1-x2) then either works out the same.


What is the answer to 3x y1 x y1?

{3x +y =1 {x+y= -3


How do you find linear equations with just coordinates?

if we take the (x1,y1),(x2,y2) as coordinates the formula was (x-x1)/(x2-x1)=(y-y1)/(y2-y1)


The distance between the points 2 y1 and 7 8 is 13 What is a possible value of y1?

You can use Pythagoras to solve this to get the co-ordinates. from Pythagoras we have a^2 + b^2 = c^2 For this a and b will be the x and y distance and c the distance between the 2 points so we get (7-2) ^2 + (8-y1)^2 = 13^2 So we need so solve this to get a correct solution which is (8-y1)^2 = 144 so 8 - y1 = + or - 12 so y1 = -4 or y1 = 20


How do you transfer point slope form into slope intercept form?

First substitute the coordinates of (x1, y1) into the equation, then simplify the equation so it has y in terms of x. y - y1 = m(x - x1) y - y1 = mx - mx1 y = mx - mx1 + y1 y = mx + (y1 - mx1) y = mx + (C)


How do you find the equation of a line when given 2 coordinates?

(y -y1)=(x -x1)(y2 -y1)/(x2 -x1) defines the line containing coordinates (x1,y1) and (x2.y2).