CSE Journal (304111 TY-1)
CSE Journal (304111 TY-1)
For
Third Year (ECT) Students
CLASS: - TY ECT I
9 Study of PLC 30
10 Study of synchro machines 43
This is to certify that Mr. Sanket Umakant Majge of Class:- TY-ECT (1)
Roll No. 304154 has performed the experiments mentioned above by the
institution
EXPERIMENT NO.1
(Prerequisite No: 1)
Theory: -
What is Scilab?
Automatic creation
1. 2. 3.
4. 5. 6.
7. 8. 9.
It is launched in Application/Xcos or by
typing xcos
A simple example
block sub-palette
sinus Sources/GENSIN f
gain Math.
Operations/GAINBLK f
scope Sinks/CSCOPE
clock Sources/CLOCK c
drag and drop blocks from the palette browser to the editing window k
is variable from the workspace (or from Simulation/Set context) black
lines are data flows and red lines are event flows
Settings: frequency = 2π/3, k = 2, final integral time = 12, Ymin= −3,
Ymax= 3, Refresh period = 12
Theory: -
Mass-Spring system.
In the Step block, set the initial and final values and the time at
which the step occurs.
Output:
Output:
Program: - Write here coding done in practical session
Output: - Paste here Screenshot of output
Conclusion: -
In this experiment we have studied that mass-spring-damper
system models provides insight into a wide range of practical
engineering problems. Also, we can understand the underlying design
of many types of sensors by understanding 2nd order system dynamics.
EEPERIMENT NO. 4
Theory: -
Control System Toolbox™ provides a number of functions to help you build
networks of LTI models. These include functions to perform
For illustration purposes, create the following two SISO transfer function models:
The mathematical operators can handle syslin type
Example
tt 1 and tt (s) = 4
(s) =
1 s+2 2 s
H2=G1*G2
H3=G1/G2
EXPERIMENT NO. 5
Aim: - Study of Root locus
Apparatus: - PC, Laptop, Mobile equipped with Scilab
Rule 5 − Find the intersection points of root locus branches with an imaginary
axis.
Rule 7 − Find the angle of departure and the angle of arrival.
Program: Write here coding done in practical session
s=%s;
num=s+4;
den=(s+1)*(s+2)*(s+6);
t=syslin('c',num/den);
clf;
evans(t);
mtlb_axis ([-5 5 -5 5])
Theory: - The Bode plot or the Bode diagram consists of two plots −
• Magnitude plot
• Phase plot
In both the plots, x-axis represents angular frequency (logarithmic scale).
Whereas, yaxis represents the magnitude (linear scale) of open loop transfer
function in the magnitude plot and the phase angle (linear scale) of the open
loop transfer function in the phase plot.
The magnitude of the open loop transfer function in dB is -
M=20log|G(jω) H(jω) |M=20log|G(jω) H(jω) |
The phase angle of the open loop transfer function in degrees is -
ϕ=∠G(jω) H(jω)
s=poly(0,"s");
tfnum=10*s+50;
tfden=s^2+3*s+1;
tf=tfnum/tfden;
sys1=syslin('c',tfnum,tfden);
bode(sys1);
Output: Paste here Screenshot of output
Theory: -
There, we have two separate plots for both magnitude and phase as the
function of frequency. Let us now discuss about polar plots. Polar plot is a plot
which can be drawn between magnitude and phase. Here, the magnitudes are
represented by normal values only.
The polar form of G(jω)H(jω)G(jω)H(jω) is
G(jω)H(jω)=|G(jω)H(jω)|∠G(jω)H(jω)G(jω)H(jω)=|G(jω)H(jω)|
∠G(jω)H(jω)
The Polar plot is a plot, which can be drawn between the magnitude and the
phase angle of G(jω)H(jω)G(jω)H(jω) by varying ωω from zero to ∞. The
polar graph sheet is shown in the following figure
.
This graph sheet consists of concentric circles and radial lines. The concentric
circles and the radial lines represent the magnitudes and phase angles
respectively. These angles are represented by positive values in anti-clock wise
direction. Similarly, we can represent angles with negative values in clockwise
direction. For example, the angle 2700 in anti-clock wise direction is equal to the
angle −900 in clockwise direction.
t=-%pi:0.1:%pi;
r=sin(t)
//style=5 or [5] for red colour]//
polarplot(t,r,style=5);
title('Polar');
Theory: -
EXPERIMENT NO. 9
Aim: - Study of PLC.
Apparatus: - PC, Laptop, Mobile equipped with Scilab.
Theory: -
Evolution of PLC: -
When the first electronic machine control was designed, relays were to
control the machine logic.
• Less reliability
• Power supply
• Programming device
Programming Device: -
The PLC is programmed using a special software using
computer or hand Held Terminal (HHT) that can load and change the
logic inside.
Operation of a PLC system: -
The operation of the PLC is determined by 3 steps
• Reading the field status form input devices
• Execution or solving the logic, and
• Updating the output devices status.
PLC Program: -
PLC Program is a Logic that is executed by the CPU. This logic
can be written in the form of Ladder diagram, Instruction List,
Sequential Function Charts, Structured text or Functional block
diagram. These are the languages used for writing logic as per IEC
standard. The program is then downloaded to the PLC. This is usually
done by temporarily connecting the PC or HHT to the PLC. Once the
program is downloaded to the CPU, it is usually not necessary for the
PC to remain connected.
PLC Scan: -
Once the program is downloaded in the CPU, the PLC is switched
to "run" mode and the PLC executes the application program. The CPU
regularly reads the status of the input devices, and sends data to the
output devices as per the logical results after execution of the
program.
The process of Initialization when power is turned on,
reading inputs, executing logic, and modifying outputs is called as PLC
Scan cycle.
Memory
The logic or application program is stored in memory. As the PLC
executes logic, it may also read and store values to memory. The values
may be referenced by the application program.
PLC Input and Output Devices: -
Two major types of Input/output modules are
• Digital - binary devices which must be in one of the two states: on or
off.
• Analog - continuous devices - sense and respond to a range of values.
Digital I/O
Common digital field input devices include pushbuttons, limit
switches, photo sensor etc. Common digital output devices include
relays, motor starters, and solenoid valves.
Analog I/O
Common analog input devices are transmitters used for sensing
various parameters. Common output signals include motor speed, valve
position, air pressure, etc.
I/O modules connect "real world" field devices to the controller. They
convert the electrical signals used in the field devices into electronic
signals that can be used by the control system, and translate real
world values to IO table values.
LogixPro Relay Logic Lab
It's now time to "Download" your program to the PLC. First click
on the
Conclusion: -
In this experiment we have studied hardware components, configuration,
building blocks of PLC. Also, we have studied LogixPro Relay Logic Lab
and perform some applications on the LogixPro Relay Logic
EXPERIMENT NO. 10
THEORY:
Principals: A synchro is an electromagnetic transducer commonly used to
convert an angular position of a shaft into an electric signal.
transmitter: fig.-a
Rotor Coil
~ Stator
Stator Winding
Operation: Let an a.c. voltage, Vr (t) = Vr sin wct, be applied to the rotor coil
which produces a sinusoidally time varying flux directed along its axis and
distributed nearly sinusoidally in the air gap along the stator periphery. As
the air gap flux is sinusoidally
distributed, the flux linking any stator coil is proportional to the cosine of
the angle between the rotor and stator coil axes and so is the voltage induced
in each stator coil. Let Vs1n, Vs2n and Vs3n.
wct cos 0
0 sin wct.
Procedure: I &II
• Connect the system in main supply.
• Starting from zero position note down the voltage between
stator terminal i.e. Vs2s1, Vs1s3 and Vs2s3 in a sequential
position.
Conclusion: -
• If angular displacement is changed depending on rotor
position the voltages are induced in stator coils.
• If transmitter position is changed then receiver position changed
accordingly.
EXPERIMENT NO. 11
Operating Instructions:
You may repeat observations with lower amplifier gain to observe that there
is greater error with higher gain (i.e. max. gain) you may note that output pot
indicates sustained oscillations.
• You may use the test point black TP1, TP2 & TP3
• TP1 – Black – Excitation voltage for potentiometer system.
• TP2 – Black - Variable point potential for I/P pot.
• TP3 – Black – Variable point potential for O/P pot.
Note that excitation point (TP1-Black) for O/P pot all flouting
with repeat to the main ground.
Green terminal on the left hand side indicates main ground of the system. You
may connect CRO across the TP4 & ground (Green terminal) TP5 & ground to
observe the a.c. preampere out/put & servo ampere output respectively.
• Please note that the switches sw2, sw1 & sw3 are in series with a.c.
• Vary the Input position pot and obscure the output pot till meter
Part - II
Operating Instructions:
• Vary the Input position pot and obscure the output pot till meter
EXPERIMENT NO. 12
(POST-REQUISITE-1)
Operator Description
< Smaller than
> Greater than
<= Smaller or equal than
>= Greater or equal than
== Equal with
~= Not equal with
3<>2
3==3
(2>1) & (3>1)
(2>1) & (3>5)
Output: Paste here Screenshot of output