Do you have a picture of the question?
Answer:
See explaination
Explanation:
int RED=10; int BLUE=11; int GREEN=12; int BUTTON1=8; int BUTTON2=9; void setup() { pinMode(RED, OUTPUT); pinMode(BLUE, OUTPUT); pinMode(GREEN, OUTPUT); pinMode(BUTTON1, INPUT); pinMode(BUTTON2, OUTPUT); } void loop() { int BTN1_STATE=digitalRead(BUTTON1); int BTN2_STATE=digitalRead(BUTTON2); if(BTN1_STATE==HIGH) { digitalWrite(BLUE, HIGH); delay(1000); // Wait for 1 second digitalWrite(BLUE, LOW); } if(BTN2_STATE==HIGH) { digitalWrite(RED, HIGH); delay(4000); // Wait for 4 seconds digitalWrite(RED, LOW); } if(BTN1_STATE==HIGH && BTN2_STATE==HIGH) { digitalWrite(GREEN, HIGH); delay(2000); // Wait for 2 second digitalWrite(GREEN, LOW); } }
Answer:
1. 
2. 
Explanation:
1.
Given:
- height of the window pane,

- width of the window pane,

- thickness of the pane,

- thermal conductivity of the glass pane,

- temperature of the inner surface,

- temperature of the outer surface,

<u>According to the Fourier's law the rate of heat transfer is given as:</u>

here:
A = area through which the heat transfer occurs = 
dT = temperature difference across the thickness of the surface = 
dx = t = thickness normal to the surface = 


2.
- air spacing between two glass panes,

- area of each glass pane,

- thermal conductivity of air,

- temperature difference between the surfaces,

<u>Assuming layered transfer of heat through the air and the air between the glasses is always still:</u>


