summaryrefslogtreecommitdiff
path: root/3754/CH3/EX3.18/3_18.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH3/EX3.18/3_18.sce')
-rw-r--r--3754/CH3/EX3.18/3_18.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH3/EX3.18/3_18.sce b/3754/CH3/EX3.18/3_18.sce
new file mode 100644
index 000000000..b5bb4bead
--- /dev/null
+++ b/3754/CH3/EX3.18/3_18.sce
@@ -0,0 +1,15 @@
+clear//
+
+//Variables
+
+V = 18 //Voltage (in volts)
+I = 60*10**-6 //current (in Ampere)
+
+//Calculation
+
+R = V/I //Resistance (in ohm)
+G = 1/R //Conductance (in siemens)
+
+//Result
+
+printf("\n The conductance is %0.2f micro-siemens.",G * 10**6)