summaryrefslogtreecommitdiff
path: root/2231/CH1/EX1.38/Ex_1_38.sce
diff options
context:
space:
mode:
Diffstat (limited to '2231/CH1/EX1.38/Ex_1_38.sce')
-rwxr-xr-x2231/CH1/EX1.38/Ex_1_38.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2231/CH1/EX1.38/Ex_1_38.sce b/2231/CH1/EX1.38/Ex_1_38.sce
new file mode 100755
index 000000000..27c335db8
--- /dev/null
+++ b/2231/CH1/EX1.38/Ex_1_38.sce
@@ -0,0 +1,15 @@
+//Example 1_38
+clc;
+clear;close;
+
+//Given data:
+R=4;//ohm
+L=6*10^-6;//H
+C=6*10^-6;//F
+V=300;//V
+di_by_dt_max=V/L;//A/s
+Isc=V/R;//A
+dvc_by_dt=R*di_by_dt_max+Isc/C;//V/s
+disp(di_by_dt_max,"Maximum permissible value of di/dt(A/s)");
+disp(dvc_by_dt,"Maximum permissible value of dv/dt(V/s)");
+