summaryrefslogtreecommitdiff
path: root/3754/CH17/EX17.1/17_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH17/EX17.1/17_1.sce')
-rw-r--r--3754/CH17/EX17.1/17_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3754/CH17/EX17.1/17_1.sce b/3754/CH17/EX17.1/17_1.sce
new file mode 100644
index 000000000..c7f16ac2f
--- /dev/null
+++ b/3754/CH17/EX17.1/17_1.sce
@@ -0,0 +1,16 @@
+clear//
+
+//Variables
+
+I = 40 //Current (in milli-Ampere)
+t = 15 * 10**-3 //time (in seconds)
+CFS = 93 //Circuit fusing rate (in Ampere-square second)
+
+//Calculation
+
+SCR = I**2 * t //Surge in the device (in Ampere-square second)
+
+//Result
+
+printf("\n Since value of SCR i.e. %0.3f A**2s is less than CFS i.e. %0.3f A**2s.",SCR,CFS)
+printf("\n Therefore the device will not be destroyed.")