diff options
Diffstat (limited to '377/CH6/EX6.9/6_9.sce')
-rw-r--r-- | 377/CH6/EX6.9/6_9.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/377/CH6/EX6.9/6_9.sce b/377/CH6/EX6.9/6_9.sce new file mode 100644 index 000000000..756b73c74 --- /dev/null +++ b/377/CH6/EX6.9/6_9.sce @@ -0,0 +1,8 @@ +disp("np0=n0p+(g*τe)");
+n0p=4.5*10^5;
+g=10^15;
+a=10^-5; //say a=τe
+np0=n0p+(g*a);
+printf('\n The value of np0 is %fcm^-3',np0);
+t=-a*log(n0p/np0);
+printf('\n The value of t is %fms',t*10^3);
\ No newline at end of file |