0% found this document useful (0 votes)
551 views

Lab 1: Systems Modeling in Simulink Using Differential Equations

This lab aims to teach students how to model differential equations in Simulink. Students will: 1. Model the differential equation of an RC circuit in Simulink using blocks like Integrator, Product, Subtract, and Divide. 2. Numerically solve the differential equation using the ode45 solver. 3. Observe the simulation results in the Scope block to understand how the capacitor voltage changes over time.

Uploaded by

Hurrem Arif
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
551 views

Lab 1: Systems Modeling in Simulink Using Differential Equations

This lab aims to teach students how to model differential equations in Simulink. Students will: 1. Model the differential equation of an RC circuit in Simulink using blocks like Integrator, Product, Subtract, and Divide. 2. Numerically solve the differential equation using the ode45 solver. 3. Observe the simulation results in the Scope block to understand how the capacitor voltage changes over time.

Uploaded by

Hurrem Arif
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 23

Lab 1: Systems Modeling in Simulink using Differential

Equations

Learning Outcomes
After completing this lab with the aid of MATLAB and Simulink, the student will be able to
 Model the differential equation of a physical system in Simulink.
 Numerically solve the differential equation using an appropriate solver in Simulink.
 Develop useful insights about a physical system from its numerical solution.
1.1 Modeling and Simulation
Modeling and simulation (M&S) at simple terms is a substitute for physical experimentation,
in which computers are used to calculate the results of some physical phenomenon. As it is
apparent from its name "Modeling and simulation" firstly a computer is used to build a
mathematical model which contains all the parameters of physical model and represent
physical model in virtual form then conditions are applied which we want to experiment on
physical model, then simulation starts i.e. we leave on computer to calculate the results of
those conditions on mathematical model. In this way, actual experimentation can be avoided
which is costly and time-consuming instead of using mathematical knowledge and computer's
computation power to solve real-world problems cheaply and in a time-efficient manner.
[CITATION Wik19 \l 1033 ]
1.2 Introduction to Simulink
Simulink is a block diagram environment for multi-domain simulation and model-based
design. It supports system-level design, simulation, automatic code generation, and
continuous test and verification of embedded systems. Simulink provides a graphical editor,
customizable block libraries and solvers for modeling and simulating dynamic systems. It is
integrated with MATLAB, enabling you to incorporate MATLAB algorithms into models
and export simulation results to MATLAB for further analysis.

1.2 Introduction to Solvers


A dynamical system is a system that evolves over time and can be modeled mathematically.
Using the information provided by its model, its evolution over a specified time interval can
be simulated by computing its state at successive time steps. The process of computing the
successive states of a system from its model is known as solving the model. No single
method of solving a model suffices for all systems. Accordingly, a set of numerical
algorithms, known as solvers, are provided that each embodies a particular approach to
solving a model.[ CITATION Mat19 \l 1033 ]
Most of the dynamical systems can be represented mathematically as differential equations
and usually, it is not quite easy to find a definite solution to these differential equations. For a
given differential equation in the following form,
dx
=f ( x ,t )
dt
Here, t is the independent variable and x is the dependent variable. Solving the differential
equations generally means finding the closed-form function x in terms of the independent
variable t, also known as the analytic solution. However, finding the analytical solution is not
always necessary and it suffices to find the approximate values of x for a finite number of
discrete values of t. This process is known as solving a differential equation numerically.
Euler's method is one of the basic methods for finding a numerical solution to a given
differential equation. It requires a differential equation with an initial condition,
dy
=f ( x ,t ) , x ( t 0 )=x 0
dx
Then for numerically solving the differential equation and finding the values of x at specific
time instances, a finite number of points are defined for t through the iterative formula,
t n+1=t n + Δt
and the corresponding values of x are found using,
x n+1=x n + Δ t ∙ f ( x n , t n )

Here, Δt is the step size for t, so each point for t has a difference of Δt from the previous
point. There is a detailed mathematical analysis of how this method works, but that is out of
the scope of this course.
Several numerical solvers are available in MATLAB that are quite powerful than the Euler’s
method explained above. We will mostly use ode45 solver to numerically solve the models in
this course. It uses the Runge-Kutta method to solve the differential equations and works well
for most practical purposes.

1.3 Example: Solving an RC Circuit


Consider the RC circuit shown in Figure 1 -1, driven by a variable voltage source. Let's try
to find out how the voltage across the capacitor varies over time using the most commonly
used models of linear electric components.

Figure 1-1 Series RC circuit driven by a voltage source

2
We know the relations between current and voltage for a resistor and a capacitor.
v R(t ) d v (t )
i R ( t )= , i ( t )=C C
R dt
Applying KVL around the loop, and substituting the above relations, we get the following
equation if the initial voltage across the capacitor is zero.
v ¿ (t )=v R ( t ) +v C ( t )
v ¿ (t )=i ( t ) R+ v C ( t )
From here, we perform some mathematical manipulations and get to the following result.
dv C ( t ) 1
= ( v ( t )−v C ( t ) )
dt RC ¿
Now we can use this differential equation to build a block diagram model in Simulink and
solve the model numerically to find out how vC varies over time.
1.4.1 Implementation in Simulink
Now we can use this differential equation to build a block diagram model in Simulink and
solve the model numerically to find out how V C varies over time.
1. Open Simulink by either typing Simulink in the MATLAB command window or
pressing the Simulink button as shown in Figure 1 -2.

Figure 1-2 Opening Simulink with button or command

2. Select the “Blank model” option from the Simulink startup panel. A blank model looks
like as shown in Figure 1 -3. Save the model by pressing Ctrl+S, in a new folder in your
working directory.

3
Figure 1-3: A blank model in Simulink

3. As shown in Figure 1 -4 open the Library Browser by clicking its button in the top panel.

Figure 1-4 Opening the Library Browser

4. From the Library Browser, you can insert the blocks you need to build a model in
Simulink. The blocks are available in the navigation pane that can be seen on the left side
of the Library Browser window, as shown in Figure 1 -5.

4
Figure 1-5: Library Browser in Simulink

Insert the following blocks in your model by going to the location of each block and then
right-click -> Add block to model. Note that the blocks are arranged in alphabetical order
in the navigation pane. Besides the location given in the following table, you can find some
of these blocks in the “Simulink -> Commonly Used Blocks” section.

Block Path Picture


Integrato
Simulink -> Continuous
r

Product Simulink -> Math Operations

Subtract Simulink -> Math Operations

Divide Simulink -> Math Operations

5
Scope Simulink -> Sinks

Step Simulink -> Sources

Constant Simulink -> Sources

1.3.1 Modeling and Simulation


Now that we have created a blank file and placed some blocks in it, we proceed to
constructing the mathematical model and simulating it.
In Simulink window verify that all the inserted blocks are present. Connect the blocks to
implement the RC circuit discussed previously. You can follow the model given in the
following diagram.
Set the values of R and C so that their time-constantτ =RC=1. Set the initial value, final
value and step time of the Step block to 0, 1 and 1 respectively. You can set the number and
polarity of inputs for the Subtract and Divide blocks for your requirement.

Figure 1-6: Implementation of the series RC circuit

The blocks and signals have been renamed in Figure 1 -6 according to the differential
equation of the RC circuit.
dv C ( t ) 1
= ( v ( t )−v C ( t ) ) STYLEREF 1¿ 1 SEQ Equation ¿ ARABIC ¿ 1 1
dt RC ¿
1
vC =∫ ( v (t )−v C (t ) ) dt +v C 0
RC ¿
The V ¿ block at the left goes to the subtract block, along with the calculated vC . The
difference is divide by RC. Now this term is equal to the right side of Equation 1-1.

6
This signal is then integrated to get vC . The initial condition, vC 0 , needed with this integration
is set in the integrator’s Properties window, which can be opened by double-clicking it. The
resulting signal is now vC .
1.3.2 Configuring the Solver
In the Simulink window, open Simulation -> Model Configuration Parameters. Set the
Type of solver to Fixed-step and Solver to ode4 (Runge-Kutta). Check that the simulation
start and stop times are 0 and 10 respectively. Set the time step to 0.01 s. It is suggested that
you do not change any other settings. Figure 1 -7 shows this configuration in the solver.

Figure 1-7: Selecting and configuring the solver

1.3.3 Running the Simulation


Start the simulation by clicking on the Run button at the top of the Simulink window.

Figure 1-8: Run the simulation

The simulation should compile quickly. You can observe its progress at the bottom of the
block diagram window. Wait until it is 100%. Now double-click the Scope to see the plot of
V C against time. Your graph should be similar to the one in Figure 1 -9.

7
Figure 1-9: vC against time for a series RC circuit

1.3.4 Verification with Analytical Solution


We can solve the differential equation of the series RC circuit to find an analytic solution for
vC .
−t
(
vC ( t )=v¿ 1−e RC )
This equation can be plotted in MATLAB to observe the behavior of vC against time. Come
to the MATLAB main window and type the following commands. You can omit the
comments after the %%. Note that you do not need to type the >> symbols, they appear
themselves at the beginning of every new line.
>> Vin = 1;
>> t = linspace(0, 10, 500);%% vary t from 0 to 10 in 500
steps
>> plot(t, Vin*(1-exp(-t))); %% plot Vc against t
>> grid on %% turn on the grid on the graph
>> xlabel(‘time’) %% label the x-axis
>> ylabel(‘Vc’) %% label the y-axis

8
After these commands, you should see a MATLAB Figure similar to the following diagram.

Figure 1-10: MATLAB plot of vC against time

1.4 Task 1: Newton’s Law of Cooling


Objective: Using Simulink, predict the variation in temperature of a hot object that is left to
cool down.
Sir Isaac Newton discovered the mathematical aspects of how the temperature of an object
changes when it is left to cool down by transferring heat to its surroundings. Newton's law of
cooling implies that the rate of change of temperature of a body that is losing heat to its
surroundings is proportional to the difference between the temperatures of the body and its
surroundings.
We can represent it mathematically as the following expression. Here T is the temperature of
the object, T a is the ambient temperature (temperature of the surroundings) and k > 0 is the
constant of proportionality. The constant of proportionality here signifies the thermal
conductivity of the object to its surroundings. The higher the k is, the faster the object loses
heat to its surroundings and the change in temperature per second in larger, and vice versa.
[ CITATION Dav19 \l 1033 ]
dT
∝ ( T a−T )
dt

9
dT
=k ( T a −T )
dt

1. Pre-Lab Consider a cup of hot tea left to dissipate its heat to the environment and its
temperature was measured at regular intervals of 30 seconds. The record of temperature
with time is as follows. Use this data to estimate k, T a and T 0, the initial temperature for
this cup. The initial temperature is clearly evident from the data. To estimate k and T a, you
can plot this data and find its gradient at several points. Then substitute the pairs of the

values of gradient ( dTdt ) and temperature ( T ) in the above differential equation to get
simultaneous equations in k and T a.
[5 points]

k =¿0.01667

T a=¿ 20

T 0=¿80

Time ( s) Temperature (° C)
0 80.0
30 56.4
60 42.1
90 33.4
120 28.1
150 24.9
180 23.0
210 21.8
240 21.1
270 20.7
300 20.4
Table 1-1: Temperature measurements of a hot cup

2. Consider the same cup of tea now initially at a temperature of 90 ° C cooling down in a
surrounding with an ambient temperature of 25 ° C. You will use Simulink to predict the
temperature of the tea as it cools down. Implement the model with a fixed step Runge-
Kutta solver, having a time step ( Δ t) of 10. Run the simulation by gradually reducing the
time step by a factor of 10 so that eventually the graph does not have any visible edges and
the simulation completes within 5 s in real-time. Take a screenshot of the graph and paste
here. [5
points]

10
3. Use your simulation in part 2 to estimate the temperature of tea after 15 s for the following
time steps. You can use the zoom feature to find the exact point on the curve. Give your
answer correct to 2 decimal places. [2 points]

(i) Δt=10s
(ii) You chose in part 2 to make the graph look smooth.

(i) T ( 15 ) =¿75.78

(ii) T ( 15 ) =¿74.90

4. In part 2, you have found the numerical solution of the differential equation. Its general
analytic solution is given as the following equation. Find the temperature of the cup after
15 seconds using this equation. Give your answer correct to 2 decimal places. [2 points]
T ( t )=T a + ( T 0−T a ) e−kt

T ( 15 ) =¿75.62
5. Compare your two answers to part with the analytical solution in part 4 and explain
whether smaller or larger time steps are better for this simulation? [2 points]

11
The smaller time steps are better as the result we obtained is more accurate and is
approximately equal to the calculated temperature after 15 seconds.

1.5 Task 2: Simulation of a Damped Mass-Spring System


Objective: Using Simulink, predict how the motion of horizontal mass-spring changes if we
vary the damping constant.
1.6.1 Spring-Mass System
Consider a mass-spring system with one end fixed. A damper is also attached to the system to
resist the motion of the mass. If a block of mass m is pulled by a force F, the spring extends
by a distance x.

Figure 1-11: Mass-Spring system

As you know, one of the first steps in modeling a mechanical system is to define a coordinate
system. In the above diagram, let's consider the origin to be the position of the right edge of
the mass, and the positive direction of motion to be towards the right.
To build a mathematical model of the mass-spring system, we use Newton's second law. We
sum up all the forces acting on the mass to find the net force and then calculate its
acceleration, which can be integrated twice to calculate the mass's displacement. Several
forces are acting on the block.
Force by the spring: A spring tends to recover its initial shape if deformed within the elastic
limit. So the spring pushes the mass away when compressed and pulls it when extended.
According to Hooke's law, the magnitude of such a restoring force is proportional to the
amount of compression or extension (in this case the displacement of mass), and the force
acts in order to oppose the displacement.
Pre-Lab Write down the equation of Hooke's law in this case. [2 points]

The equation of Hooke’ law is: F = -kx

Force due to the damper: Currently, the damper is the only source of friction experienced by
the mass and it tends to slow it down no matter which way it is moving i.e. the friction acts in

12
a direction to oppose the velocity of the mass. Its magnitude can be assumed to be
proportional to the speed of the mass.

Resultant force: The spring and damper forces and a horizontal external force F altogether
sum up to give the net force acting on the mass. This net force then accelerates the mass
according to Newton's second law.
F total=ma=F + F s+ F d
To model this system in Simulink, we must first write its differential equation in terms of
displacement and its derivatives. Then make the highest derivative the subject of the equation
because once we have the highest derivative, we can integrate it an appropriate number of
times to evaluate the displacement of the block. Let's perform this procedure step-by-step as
follows.
dx dv d 2 x
v= , a= = 2
dt dt dt

1.5.1 Modeling and Simulation in Simulink


To model this system in Simulink, we must isolate the displacement from the differential
equation. There can be several ways to do that and the most convenient form for
implementation is as follows. We substitute the expression for acceleration in the equation
and integrate the acceleration twice go get the displacement in the simulation.

1. Pre-Lab Using Hooke's law, write down the relationship between the spring force, F S, and
the extension in the spring, x, which is also the displacement of the block. You may use k
for the spring constant. [2 points]

The relationship becomes: F s=−kx

2. Pre-Lab Write down the relationship between the force exerted on the block by the
damper, F D , and the velocity of the spring, v. Use b as the damping constant. [2
points]

F D =−by

3. Pre-Lab Substitute the forces exerted on the block by the spring and the damper in the
expression for F total given above. Write down the differential equation in terms of
displacement and its derivatives, making its highest derivative the subject of the equation.
[3 points]

13
ma=F−kx−bv
❑ ❑
1
x=
m∫❑
❑ (∫ ❑(( F−kx ) dt−bx )dt )

4. Pre-Lab To calculate the spring constant k, a block of mass 0.5 kg is suspended from a
spring and it extends by 0.3 m due to block's weight. Given that the extension is within the
elastic limit, calculate the value of the spring constant k. [2 points]

k =16.33 N /m
5. Pre-Lab The block is pushed left so that it moves 0.2m towards left from its equilibrium
position and released with a velocity of 0.33 m s−1 towards the right. Write down the
values of the following initial conditions, paying special attention to their signs. [4
points]

v ( 0 )=¿0.33m/s

x ( 0 )=¿0.2m
6. Implement in Simulink the differential equation you found in part 3 using the parameters
evaluated so far in the previous parts. Assume that for now there is no damper in the
system. Connect a scope to the plot the displacement of the block. Paste the screenshot of
the model here. [5
points]

7. From the Model Configuration Parameters, set the solver to fixed step Runge-Kutta solver
and set the step size to 0.001 (it can also be written in MATLAB as 1e-3). Simulate the
system for 10 seconds and plot the displacement of the block on a scope. Capture a
screenshot of the graph and paste it here. [5 points]

14
8. Set the value of the damping constant, b=0.2 and run the simulation again. Describe the
difference in the behavior of the system from the previous part. [5 points]

The system loses energy and the wave damping is more due to addition of damping
constant.

1.6 Task 3: Series RLC Circuit


Objective: Simulate an RLC circuit in Simulink using its differential equation and predict the
behavior of voltage across the capacitor.
Consider a series RLC circuit shown in Figure 1 -12.

15
Figure 1-12 Series RLC circuit

Simple current-voltage relationships of the ideal resistor, capacitor and inductor are given as
follows.
d vc diL
v R=Ri R , i c =C , v L =L
dt dt

1. Pre-Lab Use KVL and the above relations to write down the differential equations for the
given circuit. Express vC in terms of other parameters. [5 points]

v ¿=v C + v R +v L
t
1 di
v ¿= ∫ i ( t ) dt + R i R + L L
C 0 dt
2
d v C (t) d v C ( t)
v ¿=LC 2
+ RC + v C (t)
dt dt
1 R
vC ( t )=∫ ∫( LC
( )
v¿ −v C ( t ) ) dt − v C ( t ) dt
L

2. Pre-Lab Using your knowledge of RLC circuits, write down the steady state value of vC ,
i.e. the value of vC as t → ∞. [2 points]

vC ( ∞ )=¿ 5V

3. Model the differential equation in Simulink. Run the Simulink model for 60 seconds and
observe the voltage waveform across the capacitor on the scope. Describe the shape of the
curve and explain whether the simulation matches your prediction in part 2. [5 points]

16
4. Describe the shape of the curve and explain whether the simulation matches your
prediction in part 2.
[2 points]

After a long interval of time, the charge is stored in the capacitor due to the applied voltage,
from the graph it is clear from the decrease of the slope and at 5V it is costant.

1.7 Task 4: Nonlinear Pendulum [Extra Credit]


Objective: Simulate the nonlinear model of a simple pendulum and predict the behavior of
its kinetic and potential energies during an oscillation cycle.
A simple pendulum model consists of a mass suspended by a taut massless string. Given an
initial position and speed, it swings freely about its rest position under the influence of
gravity.

17
Figure 1-13: Simple pendulum

In the above diagram, the pendulum has a mass m and length L. The angle of the string, in
radians, from the vertical is α and the acceleration due to gravity is g. Using Newton’s
second law, we can write the differential equation for the pendulum as follows.

mL α̈=−mgsin ( α )

1. Checkpoint Implement the model of the pendulum in Simulink. Set the solver to fixed step
Runge-Kutta with a step size of 0.001. Set the length of the pendulum to 1m, the mass to 1
XX
kg and release the pendulum from rest, from an angle equal to , where XX is the last 2
50
digits of your Roll Number. Simulate the pendulum for 20 seconds and plot the graph of α
against time. Paste a screenshot of the graph here. Convert the angle to degrees before
plotting it. [5 points]

2. Use the waveform in the previous part to calculate the time period of the pendulum correct
to 1 decimal place. [2 points]

T =¿ __________________________

3. Make appropriate changes to your simulation to model the pendulum as it would behave
on the Moon. Find the time period of the pendulum on the Moon. You may need to
simulate for a longer time. [2
marks]

T moon=¿ _________________________

18
1.8 Task 5: Liquid in a Leaky Tank [Extra Credit]
Objective: Using Simulink, simulate the level of fluid in a leaking tank with and without
inflow.
The rate at which a liquid flows out of a tank depends on the height of the liquid in the tank.
The exact relation between the liquid’s exit velocity and the height in the tank was found by
Torricelli. It is necessary to assume that the outflow of the liquid from the tank’s faucet is
laminar and the effects of viscosity and friction are negligible.
For a tank with a cross-sectional area A, faucet area a, the height of liquid h and the outflow
velocity u, as shown in Figure 1 -14, the height of the liquid is determined by the following
differential equation. The rate of flow of the liquid into the tank is V ¿ [ CITATION Haf02 \l
1033 ]

Figure 1-14: Liquid leaking from a tank [ CITATION Che19 \l 1033 ]

dh V ¿ a √ 2 gh
= −
dt A A
In this takes, we analyze the time it takes to empty a rooftop water tank supplying water to a
household.
1. Checkpoint Consider a water tank with a cross-sectional area 4000 cm 2 and a faucet at the
bottom with an area 1 cm2. The initial height of the liquid in the tank is 45 cm. Assume
that initially, no water is flowing into the tank, i.e. V ¿ =0. Simulate the height of the liquid
in this tank in Simulink. Choose a suitable time step and simulation time to plot a smooth
curve of h until it is less than 1.5 cm. Show the graph to the lab instructor.

19

2. How much time does it take for the tank to empty, i.e., the water level falls below 1 cm?
[2 points]

3. Simulate the tank again with the same parameters except with the inflow rate
V ¿ =250 cm3 s−1. Explain how the graph of h differs from the previous part. [2
points]

4. Adjust the value of V ¿ such that the height of the water in the tank approaches 20 cm as
t → ∞. Write the value of V ¿ below. [3 points]

1.9 Task 6: Modeling of a Rocket [Extra Credit]


Objective: Simulate a simple rocket equation on Simulink. Predict the amount of fuel
required to reach the desired height.
A rocket gains its thrust by expelling mass (hot gasses) at a high velocity. Due to Newton’s
third law, the rocket itself experiences a forward force when it expels mass backward. The
dm
following diagram shows a rocket expelling mass at a rate of at a constant velocity, ue
dt
and moving forward with a velocity of u. The mass of the rocket experiences a downward
force due to gravity, in addition to the thrust.

20
If we consider ue to be constant and the rocket to be starting from rest, we get the following
differential equation describing the velocity of the rocket. The drag coefficient for this rocket,
represented by C in the following equation, has the value 2 ×10−4. [ CITATION MIT19 \l
1033 ]
du −ue dm 2
=a= −g−C u
dt m dt
Let's first investigate what is the maximum velocity a rocket can achieve from a certain
amount of fuel stored in it. A small rocket with a dry mass of 1.5 kg and 15 kg of fuel stored
in it initially.
1. Checkpoint Construct a model of the rocket in Simulink, considering that it expels mass at
a rate of 0.8 kg s−1 at a velocity of 250 m s−1. Include a check in your simulation so that the
rocket stops expelling the mass as soon as the fuel runs out, i.e. the mass of the rocket is
1.5 kg. Plot the velocity of the rocket on a graph and show it to the lab instructor.


2. What is the maximum velocity of the rocket after it runs out of fuel and how much time
does it take to achieve this velocity? [2
points]

3. Make suitable changes in the model to calculate the height of the rocket from the initial
position and plot it on a separate graph. What is the maximum height that the rocket
achieves after it runs out of fuel and how much time does it take to reach this height? [2
points]

4. By adjusting the initial amount of fuel in your model, you can control the maximum height
that the rocket can achieve. Find out how much fuel should be loaded in the rocket so that
it reaches a maximum height of 3500 m after it runs out of fuel. [3 points]

Assessment Rubrics
EE361: Control Systems – Lab 1
Method: Lab reports and instructor observation during lab sessions

Outcome Assessed:
a. Ability to conduct experiments, as well as to analyze and interpret data (P).
b. Ability to function on multi-disciplinary teams (A).
c. Ability to use the techniques, skills, and modern engineering tools necessary for
engineering practice (P).

21
Exceeds expectation Meets expectation Does not meet
Performance Marks
(4-5) (3-2) expectation (1)
Selects relevant Needs guidance to Incapable of
equipment to the select relevant selecting relevant
experiment, develops equipment to the equipment to
1. Realization of setup diagrams of experiment and to conduct the
Experiment [a, c] equipment develop equipment experiment,
connections or wiring. connection or wiring equipment
diagrams. connection or wiring
diagrams are
Actively engages and Cooperates with other Distracts or
cooperates with other group members in a discourages other
2. Teamwork [b] group members in an reasonable manner. group members
effective manner. from conducting the
experiment.
Does proper Calibrates equipment, Unable to calibrate
calibration of examines equipment appropriate
equipment, carefully moving parts, and equipment, and
3. Conducting examines equipment operates the equipment operation
Experiment [a, c] moving parts, and equipment with minor is substantially
ensures smooth error. wrong.
operation and process.

Respectfully and Observes safety rules Disregards safety


4. Laboratory carefully observes and procedures with rules and
Safety Rules [a] safety rules and minor deviation. procedures.
procedures

d.

22
Exceeds expectation Meets expectation Does not meet
Performance Marks
(5-4) (3-2) expectation (1)
Plans data collection to Plans data collection Does not know how to
achieve experimental to achieve plan data collection to
5. Data objectives, and experimental achieve experimental
conducts an orderly objectives, and goals; data collected is
Collection [a] and a complete data collects complete data incomplete and
collection. with minor error. contain errors.

Accurately conducts Conducts simple Unable to conduct


simple computations computations and simple statistical
and statistical analysis statistical analysis analysis on collected
using collected data; using collected data data; no attempt to
correlates with minor error; correlate experimental
experimental results to reasonably correlates results with known
6. Data Analysis known theoretical experimental results to theoretical values;
[a] values; accounts for known theoretical incapable of
measurement errors values; attempts to explaining
and parameters that account for measurement errors or
affect experimental measurement errors parameters that affect
results. and parameters that the experimental
affect experimental results.
results.
Uses computer to Uses computer to Does not know how to
7. Computer collect and analyze collect and analyze use computer to
Use [a] data effectively. data with minor error. collect and analyze
data.

Total

Lab Engineer: Faculty:


Name: Name:

Signature: Signature:

Date: Date:

23

You might also like