summaryrefslogtreecommitdiff
path: root/2231/CH1/EX1.36
diff options
context:
space:
mode:
Diffstat (limited to '2231/CH1/EX1.36')
-rwxr-xr-x2231/CH1/EX1.36/Ex_1_36.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2231/CH1/EX1.36/Ex_1_36.sce b/2231/CH1/EX1.36/Ex_1_36.sce
new file mode 100755
index 000000000..025ee6db6
--- /dev/null
+++ b/2231/CH1/EX1.36/Ex_1_36.sce
@@ -0,0 +1,14 @@
+//Example 1_36
+clc;
+clear;close;
+
+//Given data:
+dv_by_dt=25/10^-6;//V/s
+L=0.2*10^-3;//H
+Vrms=230;//V
+damping=0.65;//damping factor
+Vm=sqrt(2)*Vrms;//V
+C=1/(2*L)*[0.564*Vm/dv_by_dt]^2;//F
+R=2*damping*sqrt(L/C);//ohm
+disp(C,"Value of C(F)");
+disp(R,"Value of R(ohm)");