summaryrefslogtreecommitdiff
path: root/3755/CH9/EX9.1
diff options
context:
space:
mode:
Diffstat (limited to '3755/CH9/EX9.1')
-rw-r--r--3755/CH9/EX9.1/Ex9_1.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3755/CH9/EX9.1/Ex9_1.sce b/3755/CH9/EX9.1/Ex9_1.sce
new file mode 100644
index 000000000..c7190219d
--- /dev/null
+++ b/3755/CH9/EX9.1/Ex9_1.sce
@@ -0,0 +1,14 @@
+clear
+//
+//
+//
+
+//Variable declaration
+I0=0.3; //current(micro A)
+V=0.15; //voltage(V)
+
+//Calculations
+I=I0*(exp(40*V)-1); //value of current(micro A)
+
+//Result
+printf("\n value of current is %0.2f micro A",I)