diff options
Diffstat (limited to '2075/CH6/EX6.8/pe6_8.sce')
-rwxr-xr-x | 2075/CH6/EX6.8/pe6_8.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2075/CH6/EX6.8/pe6_8.sce b/2075/CH6/EX6.8/pe6_8.sce new file mode 100755 index 000000000..2d53fc442 --- /dev/null +++ b/2075/CH6/EX6.8/pe6_8.sce @@ -0,0 +1,10 @@ +//example 6.8
+clc; funcprot(0);
+// Initialization of Variable
+L=10;//inductor
+I=4.5;//current
+t=300//time
+//calculation
+V=L*I/t;
+disp(V*1000,"voltage in V:")
+clear()
|