diff options
Diffstat (limited to '1316/CH1/EX1.16/example1_16.sce')
-rw-r--r-- | 1316/CH1/EX1.16/example1_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1316/CH1/EX1.16/example1_16.sce b/1316/CH1/EX1.16/example1_16.sce new file mode 100644 index 000000000..c2a991dbc --- /dev/null +++ b/1316/CH1/EX1.16/example1_16.sce @@ -0,0 +1,15 @@ +//Chapter 1
+//Example 1.16
+//Page 40
+
+clear;
+clc;
+
+R = 12.5;
+I = 2.21;
+Scale = 10;
+Acc = 0.2;
+
+//Finding the voltage across resistor
+printf("The voltage across resistor is %.1f V",I*R);
+
|