diff options
Diffstat (limited to '1430/CH1/EX1.3/exa1_3.sce')
-rw-r--r-- | 1430/CH1/EX1.3/exa1_3.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1430/CH1/EX1.3/exa1_3.sce b/1430/CH1/EX1.3/exa1_3.sce new file mode 100644 index 000000000..3d00f33f0 --- /dev/null +++ b/1430/CH1/EX1.3/exa1_3.sce @@ -0,0 +1,8 @@ +// Example 1.3
+// Magnitude Manipulations
+P_max=20; // Maximum power rating of the device
+V_max=50; // Maximum voltage rating of the device in kV
+i_max=P_max/(V_max*10^3);// Maximum current that can be drawn from the device
+disp(P_max,"Maximum power rating of the device(in Watt)=")
+disp(V_max,"Maximum voltage rating of the device(in kV)=")
+disp(i_max,"Maximum current through the device(in Amps)=")
|