summaryrefslogtreecommitdiff
path: root/147/CH1/EX1.10/Example1_10.sce
blob: 6e3f215fd21ac8ae4b98805da565e022c80faf46 (plain)
1
2
3
4
5
6
7
8
9
//Inductance L, Current i, Time after which current reverses its direction T
close();
clear;
clc;
L = 0.05;//H
i = 5;//A
T = 25;//ms
vavg = L*(i-(-i))/(T*10^(-3));
mprintf('Average voltage induced in the inductance, vavg = %0.0f V',vavg);