diff options
Diffstat (limited to '1026/CH6/EX6.10/Example6_10.sce')
-rwxr-xr-x | 1026/CH6/EX6.10/Example6_10.sce | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/1026/CH6/EX6.10/Example6_10.sce b/1026/CH6/EX6.10/Example6_10.sce new file mode 100755 index 000000000..3e1dbd62b --- /dev/null +++ b/1026/CH6/EX6.10/Example6_10.sce @@ -0,0 +1,29 @@ +//chapter6,Example6_10,pg 124
+
+Rhp=3.66*10^-4
+
+rho=8.93*10^-3
+
+e=1.6*10^-19
+
+p=1/(Rhp*e)
+
+Uhp=Rhp/rho
+
+Bz=0.5
+
+theta=atan(Uhp*Bz)
+
+theta=theta*(180/%pi)
+
+printf("density of charge carrier\n")
+
+disp(p)
+
+printf("\nhall angle\n")
+
+printf("theta=%.2f deg.",theta)
+
+printf("\nhall mobility\n")
+
+printf("Uhp=%.4f m2/VS",Uhp)
\ No newline at end of file |