diff options
Diffstat (limited to '2219/CH2/EX2.7/Ex2_7.sce')
-rwxr-xr-x | 2219/CH2/EX2.7/Ex2_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2219/CH2/EX2.7/Ex2_7.sce b/2219/CH2/EX2.7/Ex2_7.sce new file mode 100755 index 000000000..fbd14d05f --- /dev/null +++ b/2219/CH2/EX2.7/Ex2_7.sce @@ -0,0 +1,13 @@ +// chapter 2 example 7
+//------------------------------------------------------------------------------
+clc;
+clear;
+
+// | ax ay az |
+// v*H = | ∂/∂x ∂/∂y ∂/∂z |
+// | 0 10^6 *cos(377t + 1.2566*10^-6z) 0|
+// = ∂/∂z(10^6 *cos(377t + 1.2566*10^-6z))ax
+// = -1.2566*10^-6 *10^6sin(377t +1.2566*10^-6 z)
+// = -1.2566sin(377t + 1.2566*10^-6z)ax
+mprintf('Amplitude of displacement current density = 1.2566 A/m^2');
+//------------------------------------------------------------------------------
|