f_t = 
q1 what will
51 views (last 30 days)
Show older comments
stable approaches zero as time approaches infinty
unstable grows without bound as time approaches infinty
critically (marginally) stable neither decays nor grows but remains constant
system is stable if erery bounded input yields a bound output. The bounded input, bound output (BIBO) stability
system is unstable if any bounded input yields a unbounded output
syms s t
f_t = 5*exp(-2*t)
f=laplace(f_t,s)
syms s t
y=(s+3)/(s*(s+1))
f=ilaplace(y,t)
figure
ezplot(f,[0 15])
G = tf([1.5],[1 1 0.5])
figure
step(G)
grid;
stepinfo(G)
h = feedback(G,1)
figure
step(h) % step
grid;
stepinfo(h)
H = tf([1],[1 4 12])
z=zero(H)
p=pole(H)
figure
pzmap(H) % zero and pole
figure
step(H)
stepinfo(H)
G1 =tf([1 2],[1]);
G2 =tf([1],[1 1]);
S =series(G1,G2) % block diagram
G3 =tf([2],[1 3]);
T_final =feedback(S,G3)
G = tf([4],[1 7 6])
figure
step(G)
Kp = 50;
G_closed = feedback(G*Kp,1)
figure
step(G_closed) % Unity feedback open loop
Kd=5;
G_comp = tf([Kd Kp],[1])
G_closed = feedback(G_comp*G, 1)
figure
step(G_closed)
G = tf([5],[0.5 1 0])
figure
bode(G)
grid;
figure
margin(G)
% Bode Plot
K = 0.4416
C= tf([K*5],[0.5 1 0])
figure
bode(C)
grid;
figure
margin(C)
The system is stable in closed loop because when the gain is crossing Zero, the phase is still above -180 degree. This makes the closed loop stable
- Operator Interface (HMI): The operator uses a Human-Machine Interface (HMI) to interact with the SCADA system (Example PC with Video Display Unit (VDU) and Keyboard: Inputs commands/messages).
- MTU (Master Terminal Unit): This is the central part of the SCADA system, located at the central monitoring station. It communicates with the RTUs, gathers data, processes it, and displays it to the operator. It also sends control commands to the RTUs Normally, the M T U will have auxiliary devices (e.g., printers and backup memories) attached to it.
- RTUs (Remote Terminal Units): These are field devices located at remote sites (RTU #1, RTU #2, RTU #3, RTU #4) that interface with sensors and actuators. They collect data from the sensors and transmit it to the SCADA master station. They also receive commands from the SCADA system to control field devices.
- Modems: These devices are used to convert digital signals from the RTUs to analog signals for transmission over long distances. They facilitate communication between the RTUs and the MTU via various communication channels.
- Communication Network / Infrastructure:Wired Communication: The figure shows wired connections between some RTUs and the MTU through modems, indicating the use of physical communication lines such as telephone lines or dedicated network cables. Radio Communication: Some RTUs communicate with the MTU via radio links. This setup involves modems and radio transmitters/receivers, allowing for wireless communication, which is useful in remote or difficult-to-access locations.
2 Comments
John D'Errico
13 minutes ago
There is no question at all in this. Only a single error message where it appears you have inadvertantly made a comment as executable code, and then allowed MATLAB to try to execute the comment.
Bode Plot
So, if you have a question, then ask it. Otherwise this post does not belong on Answers as it is.
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!











