diff options
Diffstat (limited to '3835/CH1/EX1.13/Ex1_13.sce')
-rw-r--r-- | 3835/CH1/EX1.13/Ex1_13.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3835/CH1/EX1.13/Ex1_13.sce b/3835/CH1/EX1.13/Ex1_13.sce new file mode 100644 index 000000000..527f55d3c --- /dev/null +++ b/3835/CH1/EX1.13/Ex1_13.sce @@ -0,0 +1,14 @@ +clear +// +//values are obtained from the graph +i=10 //10t A for 0 to 1 second +d=10 //where di/dt is 10 +L=2 +// at one second +v=L*d +printf("\n v= %0.1f v",v) +//for 1 to 5 seconds +d=-5 +//at t=3 seconds voltage across the inductor is +v=L*d +printf("\n v= %0.1f v",v) |