summaryrefslogtreecommitdiff
path: root/620/CH24/EX24.8/example24_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '620/CH24/EX24.8/example24_8.sce')
-rw-r--r--620/CH24/EX24.8/example24_8.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/620/CH24/EX24.8/example24_8.sce b/620/CH24/EX24.8/example24_8.sce
new file mode 100644
index 000000000..c380f382b
--- /dev/null
+++ b/620/CH24/EX24.8/example24_8.sce
@@ -0,0 +1,17 @@
+i=0.2;
+v1=120;
+f=60;
+v2=95;
+disp("Part a");
+z1=v1/i;
+x_l=sqrt(z1^2-r^2);
+z2=v2/i;
+x_c=x_l-sqrt(z2^2-r^2);
+c=1/(2*%pi*f*x_c);
+disp("the size of capacitance (in μF) needed is"); disp(c*10^6);
+disp("Part b");
+vc=i*x_c;
+disp("voltage (in V) across capacitor is");disp(vc);
+disp("Part c");
+v=i*z1;
+disp("voltage (in V) across solenoid is"); disp(v); \ No newline at end of file