summaryrefslogtreecommitdiff
path: root/1076/CH19/EX19.2/19_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1076/CH19/EX19.2/19_2.sce')
-rwxr-xr-x1076/CH19/EX19.2/19_2.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1076/CH19/EX19.2/19_2.sce b/1076/CH19/EX19.2/19_2.sce
new file mode 100755
index 000000000..40be50051
--- /dev/null
+++ b/1076/CH19/EX19.2/19_2.sce
@@ -0,0 +1,18 @@
+clear;
+clc;
+
+V=10000;
+P=12.5e6;
+f=50;
+Xl=4;
+
+
+d=asin(P*Xl/(V*V));
+
+VL=2*V*sin(d/2);
+QL=VL^2/4;
+Qc=QL/2;
+
+C=Qc/(2*%pi*f*V*V);
+
+mprintf("C=%.1f e-6F",C*1e6);