summaryrefslogtreecommitdiff
path: root/2219/CH2/EX2.8/Ex2_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH2/EX2.8/Ex2_8.sce')
-rwxr-xr-x2219/CH2/EX2.8/Ex2_8.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2219/CH2/EX2.8/Ex2_8.sce b/2219/CH2/EX2.8/Ex2_8.sce
new file mode 100755
index 000000000..2f30c11b7
--- /dev/null
+++ b/2219/CH2/EX2.8/Ex2_8.sce
@@ -0,0 +1,16 @@
+// chapter 2 example 8
+//------------------------------------------------------------------------------
+clc;
+clear;
+
+// | ax ay az |
+// v*E = | ∂/∂x ∂/∂y ∂/∂z |
+// | 0 0 80*cos(6.277*10^8t - 2.092y) |
+// Electric flux density D = εoE
+// = 8.85*10^-12 *80cos(6.277*10^8t - 2.092y)ax
+// = 708*10^-12 *cos(6.277*10^8 t -2.092y)ax
+// Displacement current density = ∂D/∂t
+// ∂D/∂t = -708*10^-12*6.277*10^8*sin(6.277*10^8t - 2.092y)ax
+// = -0.444sin(6.277*10^8t - 2.092y)ax
+mprintf('Amplitude of displacement current density = 0.0444 A/m^2');
+//------------------------------------------------------------------------------