blob: 2f14f6b3f138588beaeddbb268c269eb716edda8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// To Compute the Maximum Induced EMF
clc;
clear;
T=1/50;
fluxmax=0.02;
N=100;
flux= fluxmax*(poly([1 -4/T],'t','c'));// Flux Equation under consideration.
e=N*(-1)*derivat(flux);
disp('volts',e,'The Maximum induced EMF= ')
|