diff options
Diffstat (limited to '2273/CH9/EX9.12/ex9_12.sce')
-rwxr-xr-x | 2273/CH9/EX9.12/ex9_12.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2273/CH9/EX9.12/ex9_12.sce b/2273/CH9/EX9.12/ex9_12.sce new file mode 100755 index 000000000..243313517 --- /dev/null +++ b/2273/CH9/EX9.12/ex9_12.sce @@ -0,0 +1,11 @@ +//Calculate the charging current
+clear;
+clc;
+//soltion
+//given
+C3=(0.4*10^-6)*5;//farad
+Vph=11*10^3/sqrt(3);
+f=50;//Hz
+Cn=2*C3;
+Ic=2*%pi*f*Vph*Cn;
+printf("Charging current= %.2f A",Ic)
|