diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1514/CH2/EX2.5 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1514/CH2/EX2.5')
-rwxr-xr-x | 1514/CH2/EX2.5/ch2_2_5.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1514/CH2/EX2.5/ch2_2_5.sce b/1514/CH2/EX2.5/ch2_2_5.sce new file mode 100755 index 000000000..5cdc414e5 --- /dev/null +++ b/1514/CH2/EX2.5/ch2_2_5.sce @@ -0,0 +1,16 @@ +//chapter 2
+//example 2.5
+//page 40
+clear;
+clc ;
+//given
+VF=0.7;//forward voltage drop across diode for temparature range 0-65 degree celcius
+deltaT1=40;//change in temperature for T=65 in degree celcius
+deltaVF=-1.8/10^3; //change in forward voltage drop per degree celcius
+//finding required VF
+VFmin=VF+deltaVF*deltaT1; //minimum forward voltage drop in volts
+
+deltaT2=-25; //change in temperature for T=0 in degree celcius
+VFmax=VF+deltaVF*deltaT2; //maximum forward voltage drop in volts
+
+printf('Minimum and maximum values of forward voltage drop are %.3f V & %.3f V.',VFmin,VFmax)
|