diff options
Diffstat (limited to '2129/CH1/EX1.23.6')
-rwxr-xr-x | 2129/CH1/EX1.23.6/ex1_23_6.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2129/CH1/EX1.23.6/ex1_23_6.sce b/2129/CH1/EX1.23.6/ex1_23_6.sce new file mode 100755 index 000000000..8b85b2fe4 --- /dev/null +++ b/2129/CH1/EX1.23.6/ex1_23_6.sce @@ -0,0 +1,12 @@ +//Exa 1.23.6
+clc;
+clear;
+close;
+// Given data
+e = 1.6 * 10^-19;// in C
+R_H = 0.0145;// in m^3/coulomb
+Mu_e = 0.36;// in m^2/v-s
+E = 100;// in V/m
+n = 1/(e * R_H);// in /m^3
+J = n * e * Mu_e * E;// in A/m^2
+disp(J,"The current density of specimen in A/m^2 is");
|