diff options
Diffstat (limited to '3754/CH3/EX3.17')
-rw-r--r-- | 3754/CH3/EX3.17/3_17.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3754/CH3/EX3.17/3_17.sce b/3754/CH3/EX3.17/3_17.sce new file mode 100644 index 000000000..7b2660061 --- /dev/null +++ b/3754/CH3/EX3.17/3_17.sce @@ -0,0 +1,13 @@ +clear//
+
+//Variables
+
+G = 50*10**-6 //Conductance (in siemens)
+
+//Calculation
+
+R = 1/G //Resistance (in ohm)
+
+//Result
+
+printf("\n The Resistance is %0.3f kilo-ohm.",R * 10**-3)
|