diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2231/CH1/EX1.38 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2231/CH1/EX1.38')
-rwxr-xr-x | 2231/CH1/EX1.38/Ex_1_38.sce | 15 |
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)");
+
|