You are on page 1of 9

Control lab

(0904419)
Short lab report

School of engineering
The university of Jordan, Amman-Jordan

Analog simulation report


by
Laith Mahmoud Hasan Hameed (0194768)
Abdallah Saleem Abdullah Abu-ghosh (0194980)
Mohannad Mohammad Mahmoud Sara (0194575)

Section
2

March ,16, 2023


Abstract

The aim of this experiment was to compare the analog computer reading with both analytical and
numerical solution representations. To achieve this, an analog computer board was employed to
solve ODEs. An electrical analog computer comprises resistors, capacitors, and operational
amplifiers connected together, and it is an active network that can simulate any set of linear
ordinary differential equations to analyze a system. In our experiment, the analog computer
received input from two sources: function generation and data acquisition (DAQ). The three
techniques used for representation - analytical, numerical, and analog computer readings - were
similar.

I
Experimental Setup and Procedure

In this section, the setup and the procedure of the experiment will be discussed, starting with the
setup:

Figure 1:Analog simulation board

Figure 2: Data Acquisition (DAQ)

1
-The block diagram is made and ready to be applied to the analog computer.
-To calibrate the gain the DAQ is connected by USB connection to the computer.
-Make sure the analog computer is off when connecting / disconnecting cables.
-The DAQ output is connected to the gain input on the board.
- The DAQ input is connected to the gain output .
-Turn on the analog computer.
-Open Casi lab software and make a new file.
-Set A and X as active.
-Set the input voltage, frequency, duty cycle, square input and start the analysis.
-Turn the gain knob on the board until the output on the casi lab is set to get the desired gain.
-Turn off the analog computer.
-This process is repeated for calibration of KI value.
-After calibration KP and Kd are set to zero to get the integrating function from the PID
controller.
-Turn the Analog computer off and disconnect all cables.
-Connect DAQ output to the addition in the sum junction in the PID controller section.
-Connect the PID output to the DAQ input.
-Connect the PID output to the gain input.
-Connect the gain output to the subtraction part of the sum junction in the PID section.
-Turn on the analog computer.
-Open a new page in Casi lab.
-Set the input voltage, frequency, duty cycle, square input and start the analysis.
-Collect the results and compare with other methods.

2
Results

Using three techniques to solve a first order system:

1. Analytical solution

The input signal that was implemented from the analog simulator was a step square wave with
the following governing equation:
X˙(𝑡) + 3X(𝑡) = 3.5
To solve the equation, we apply laplace to the equation:
𝑆X(𝑆) + X(0) + 3X(𝑆) = 3.5/𝑆
X(𝑆) = 3.5/ 𝑆(𝑆+3)
By taking laplace inverse we get the following:
3.5
x(𝑡) = (1 − 𝑒 −3𝑡 )
3

Figure 3:Analytical solution representation

3
2. Numerical solution
Using Runge-Kutta 4th order numerical method and implying it in MATLAB the following was
achieved:
function [x, y] = Stepf(F,h,x0,x1,y0,y1)

h=0.1;
x0=0;
x1=20;
y0=1;
y1=0;

F= @(t,y) (3.5)*exp(-3*t);
x = x0:h:x1;
y = zeros(1,length(x));
y(y0) = y1;

for i=1:(length(x)-1)

k1 = F(x(i),y(i));
k2 = F(x(i)+0.5*h,y(i)+0.5*h*k1);
k3 = F((x(i)+0.5*h),(y(i)+0.5*h*k2));
k4 = F((x(i)+h),(y(i)+k3*h));
y(i+1) = y(i) + (1/6)*(k1+2*k2+2*k3+k4)*h;
end
figure, plot(x, y)
end

4
Figure 4:Numerical solution representation

3. CASSY LAB program:

Figure 5:CASSY LAB program representation


5
Discussion
Analog computers were once the workhorses of scientific computing. Indeed, analog calculating
devices date back many hundreds of years – typical examples being the device known as the
sector (also known as the proportional compass) and the much better known logarithmic slide
rule. In an analog computer, numbers are typically represented as voltages or currents, rather
than as zeros and ones, as in digital machines. The difference between analog computers and
digital computers lies in their way of processing data.
There are many different types of analog computers including : Slide Rules, Differential
Analysers, Castle Clock, Electronic Analog Computers, Mechanical Analog Computers,
Pneumatic Analog Computer, Hydraulic Analog Computer.

Thes analog computer consist of : Precision resistors and capacitors, Operational amplifiers,
Multipliers
Potentiometers, and Fixed-function generators to get the desired output shown by the DAQ on the
computer software.

They have many uses summarized in working as voltmeters to get the potential difference between
two points on an electrical circuit, Thermometers to determine the fever level in a human body or
diagnose body temperature, Analogue Clocks, Seismometer to keep records of an earthquake,
speedometer to get speed of a running vehicle, Tide predictors through the use of mechanical
machinery to get note of the height of tides at regular intervals, and in flight simulators it helps to
demonstrate illusions that happen to the pilots in the air to make sure they are prepared for all
scenarios through the use of hydraulic pumps, image generators, sound systems, more actuators,
and other technology.

The chief advantage of analog machines is that it can be easier to simulate a physical situation via
hooking up (usually via plug board wires) various combinations of signal generators, integrating
devices than learning how to write a program. Its also flexible as seen in the ability to connect the
cables in countless configurations and with the use of DAQ and Casi lab you have the ability to
solve and see many engineering phenomena’s behavior and response with simple steps.
The primary advantage of an analog computer is it can display the output in simple and graphical
manners within a short time period. Digital computers need complex programs to be transmitted
in real-time, whereas analog computers can easily be transmitted in real-time.
Although the analog computers are very useful they have some downsides presented in the
amount of power they consume and the higher rate of signal conversion, which is shown inside.

6
Conclusion
We Conclude that The analog computer is a very useful technology and can serve many purposes
upon application of correct analysis of system. It can help to understand the behavior and
response of first order systems and as demonstrated it gives a very accurate presentation of a
solution of a First order system.

References

Analog Computers. Analog Computers | Selling the Computer Revolution | Computer History
Museum. (1964, January 1).

Basharat, S. (2023, February 5). Analog Computer – types, advantages, and disadvantages.
EDUInput.

Banger, E. R. S. (2022, December 21). What is Analog Computer? examples, types, &
characteristics!! DigitalThinkerHelp‫ز‬

You might also like