summaryrefslogtreecommitdiff
path: root/2231/CH1/EX1.12
diff options
context:
space:
mode:
Diffstat (limited to '2231/CH1/EX1.12')
-rwxr-xr-x2231/CH1/EX1.12/Ex_1_12.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2231/CH1/EX1.12/Ex_1_12.sce b/2231/CH1/EX1.12/Ex_1_12.sce
new file mode 100755
index 000000000..b2a7b4dfa
--- /dev/null
+++ b/2231/CH1/EX1.12/Ex_1_12.sce
@@ -0,0 +1,12 @@
+//Example 1_12
+clc;
+clear;close;
+
+//Given data:
+I=120;//A
+Gamma=180;//degree
+RMS_current=I*sqrt(Gamma/360);//A
+AVG_current=I*(Gamma/360);//A
+FormFactor=RMS_current/AVG_current;//no unit
+disp(RMS_current,"rms current (in A) : ");
+disp(FormFactor,"Form Factor : ");