diff options
Diffstat (limited to '3809/CH1/EX1.1/EX1_1.sce')
-rw-r--r-- | 3809/CH1/EX1.1/EX1_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3809/CH1/EX1.1/EX1_1.sce b/3809/CH1/EX1.1/EX1_1.sce new file mode 100644 index 000000000..9931be8e4 --- /dev/null +++ b/3809/CH1/EX1.1/EX1_1.sce @@ -0,0 +1,14 @@ +//Chapter 1, Example 1.1 + +clc +//Initialisation +v1=15.8 //voltage +v2=12.3 //voltage +r=220 //resistance in ohm + +//Calculation +v=v1-v2 //voltage +i=v/r //current in ampere + +//Results +printf("Current, I = %.1f mA",(i*1000)) |