diff options
Diffstat (limited to '3754/CH3/EX3.22/3_22.sce')
-rw-r--r-- | 3754/CH3/EX3.22/3_22.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH3/EX3.22/3_22.sce b/3754/CH3/EX3.22/3_22.sce new file mode 100644 index 000000000..e32053f52 --- /dev/null +++ b/3754/CH3/EX3.22/3_22.sce @@ -0,0 +1,14 @@ +clear//
+
+//Variables
+
+I = 20 * 10**-3 //Current per segment (in Ampere)
+V = 5 //Voltage (in volts)
+
+//Calculation
+
+R = V/I //Resistance (in ohm)
+
+//Result
+
+printf("\n Resistance that must be inserted into the circuit of each segment is %0.3f ohm.",R)
|