diff options
Diffstat (limited to '3504/CH1/EX1.2/Ex1_2.sce')
-rw-r--r-- | 3504/CH1/EX1.2/Ex1_2.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3504/CH1/EX1.2/Ex1_2.sce b/3504/CH1/EX1.2/Ex1_2.sce new file mode 100644 index 000000000..820318986 --- /dev/null +++ b/3504/CH1/EX1.2/Ex1_2.sce @@ -0,0 +1,9 @@ +//To determine the rise of temperature. +clc; +R_1=3.42 //Resistance at room temperature,at 20 degree C(ohm) +R_2=4.22 //Resistance at full load(ohm) +alpha=0.00426 //Temperature coefficient +T_1=20 //Room temperature(degree C) +T_2=(((R_2*(1+(alpha*T_1)))/R_1)-1)/alpha +R_t=T_2-T_1 +disp(R_t,'Rise in temperature(degree C)') |