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