summaryrefslogtreecommitdiff
path: root/3523/CH3/EX3.7.6/Ex3_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3523/CH3/EX3.7.6/Ex3_6.sce')
-rw-r--r--3523/CH3/EX3.7.6/Ex3_6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3523/CH3/EX3.7.6/Ex3_6.sce b/3523/CH3/EX3.7.6/Ex3_6.sce
new file mode 100644
index 000000000..54e34d33f
--- /dev/null
+++ b/3523/CH3/EX3.7.6/Ex3_6.sce
@@ -0,0 +1,12 @@
+// Example 6// Ch 3
+clc;
+clear;
+close;
+// given data
+z1=-1;//ion at a distance equal to mean free path, -x=mfp
+z2=-5;//ion at a distance equal to five times the mean free path, -x=5mfp
+//n0 is the density of ions at the origin
+n1 = exp(z1);//density of ions at distance equal to the mean free path
+n2 = exp(z2);//density of ions at distance equal to five times the mean free path
+printf("density of ions at distance equal to the mean free path %fn0",n1)
+printf("density of ions at distance equal to five times the mean free path %fn0",n2)