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 /2534/CH2/EX2.12 | |
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 '2534/CH2/EX2.12')
-rwxr-xr-x | 2534/CH2/EX2.12/Ex2_12.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2534/CH2/EX2.12/Ex2_12.sce b/2534/CH2/EX2.12/Ex2_12.sce new file mode 100755 index 000000000..751860fad --- /dev/null +++ b/2534/CH2/EX2.12/Ex2_12.sce @@ -0,0 +1,11 @@ +//Ex2_12
+clc
+Ii = 10
+If = 15
+delta_t = 2
+dI = Ii - If
+disp("Ii = "+string(Ii)+"A")//initial current
+disp("If = "+string(If)+"A")//final current
+disp("delta_t = "+string(delta_t)+"sec")//time taken to change current
+disp("dI/dt = "+string(abs(dI)/delta_t)+"Amp/sec.")//calculation for rate of change of current
+//wronge answer given in the textbook i.e. 0.5 Amp/sec.
|