summaryrefslogtreecommitdiff
path: root/2096/CH1/EX1.29/ex_1_29.sce
blob: f67aaa427439739174f6cb1e00dfb5bc105ea2ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 1.29 // output
clc;
clear;
close;
//given data :
Iin=0.35; // sinusoidl input relation
t=0.3; // sec
w=25; // rad/sec
a=1/sqrt(1+(w*t)^2);
Io=Iin*a;
pi=atand(w*t);
disp(pi,"the phase shift,pi(celcius)")
disp("the output expression,Io = 0.0462sin(25t-82.4)")