diff options
Diffstat (limited to '2288/CH2/EX2.24.1/ex2_24_1.sce')
-rwxr-xr-x | 2288/CH2/EX2.24.1/ex2_24_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2288/CH2/EX2.24.1/ex2_24_1.sce b/2288/CH2/EX2.24.1/ex2_24_1.sce new file mode 100755 index 000000000..e43c62455 --- /dev/null +++ b/2288/CH2/EX2.24.1/ex2_24_1.sce @@ -0,0 +1,12 @@ +//Exa 2.24.1
+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");
|