diff options
Diffstat (limited to '3754/CH17/EX17.2/17_2.sce')
-rw-r--r-- | 3754/CH17/EX17.2/17_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH17/EX17.2/17_2.sce b/3754/CH17/EX17.2/17_2.sce new file mode 100644 index 000000000..b50a48500 --- /dev/null +++ b/3754/CH17/EX17.2/17_2.sce @@ -0,0 +1,14 @@ +clear//
+
+//Variables
+
+SCR=75.0;I2t=75.0;
+IS = 100.0 //Current (in Ampere)
+
+//Calculation
+
+tmax = I2t / IS**2 //Maximum allowable time (in seconds)
+
+//Result
+
+printf("\n Maximum allowable time is %0.3f ms.",tmax * 10**3)
|