summaryrefslogtreecommitdiff
path: root/2219/CH2/EX2.8/Ex2_8.sce
blob: 2f30c11b7e59a16ac551ea066c1f27f63a61974e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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');
//------------------------------------------------------------------------------