blob: b2d5e445fe49a2b24d25cbc4624e8f533b7918e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Grob's Basic Electronics 11e
// Chapter No. 13
// Example No. 13_3
clc; clear;
// With a flux of 400 uWb through an area of 0.0005 sqm, what is the flux density B in tesla units?
// Given data
A = 0.0005; // Area=0.0005 sqm
flux = 400*10^-6; // Total Flux=400 uWb
B = flux/A;
disp (B,'The Flux Density in Tesla (T)')
|