summaryrefslogtreecommitdiff
path: root/275/CH1/EX1.1.48
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /275/CH1/EX1.1.48
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '275/CH1/EX1.1.48')
-rwxr-xr-x275/CH1/EX1.1.48/Ch1_1_48.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/275/CH1/EX1.1.48/Ch1_1_48.sce b/275/CH1/EX1.1.48/Ch1_1_48.sce
new file mode 100755
index 000000000..11897c26b
--- /dev/null
+++ b/275/CH1/EX1.1.48/Ch1_1_48.sce
@@ -0,0 +1,15 @@
+clc
+disp("Example 1.48")
+printf("\n")
+disp("Find the maximum forward current")
+T1=25 //to find maximum forward current at this temperature
+T2=65 //to find maximum forward current at this temperature
+PT1=600*10^-3 //maximum power dissipation at 25c
+D=5*10^-3 //derating factor
+VT1=0.6 //forward voltage drop(constant at all temperature)
+VT2=VT1
+IT1=PT1/VT1 //maximum forward current at T1
+PT2=PT1-((T2-T1)*D)
+IT2=PT2/VT2 //maximum forward current at T2
+printf("Forward current at temperature T1=\n%f Ampere\n",IT1)
+printf("Forward current at temperature T2=\n%f Ampere\n",IT2)