diff options
Diffstat (limited to '3651/CH6/EX6.13')
-rw-r--r-- | 3651/CH6/EX6.13/13.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3651/CH6/EX6.13/13.sce b/3651/CH6/EX6.13/13.sce new file mode 100644 index 000000000..78d593d1d --- /dev/null +++ b/3651/CH6/EX6.13/13.sce @@ -0,0 +1,13 @@ +
+//Variable declaration
+Vt=0.0258
+mu_n=1300
+mu_p=500
+
+//Calculations
+Dn=Vt*mu_n
+Dp=Vt*mu_p
+
+//Result
+printf('Dn = %0.3f cm**2 s**-1 \n',Dn)
+printf('Dp = %0.3f cm**2 s**-1 \n',Dp)
\ No newline at end of file |