summaryrefslogtreecommitdiff
path: root/3871/CH5/EX5.36/Ex5_36.sce
blob: 7b307de903f0fb8e3357b99a83a336e1cb249b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//===========================================================================
//chapter 5 example 36

clc;
clear all;

//variable declaration
theta1      = 105;      //deflection in °
I1          = 20;       //current in A
I2          = 20;       //current in A
f1          = 50;       //frequency in Hz
f2          = 75;       //frequency in Hz


//calculations
theta       = (theta1)*((I2/I1)^2)*(f2/f1);

//result
mprintf("deflection of the instrument while measuring  20 A = %3.1f °",theta);