Sunteți pe pagina 1din 23

Laboratory Exercise No.

6
Equations of States: Single Non-linear Equations

1. Objective:
The activity aims to solve problems involving equations of states.

2. Intended Learning Outcomes (ILOs):


The students shall be able to:
2.1 solve algebraic equations, but also size equipment in chemical plant, certainly those pieces of
equipment containing gases.

3. Discussion:

At a specified temperature and pressure, solving equations of state allows us to find the specific
volume of a gaseous mixture of chemicals. It would be impossible to design a chemical plant without using
equations of state. By the knowledge of specific volume, one can determine the size, and thus, cost of the
plant, including the diameter of pipes, the horsepower of compressor and pumps, and the diameter of
distillation towers and chemical reactors. To design a plant without this important information is a very
challenging task.
To calculate the enthalpy and vapor-liquid properties of mixtures, determining the specific volume is
also the first step. Calculating this enthalpy is especially important when making energy balances to reduce
energy use and help the environment.
The ideal gas equation of state , which relates the pressure, temperature and specific volume, is a
familiar equation:

This equation is quite adequate when the pressure is low (such as one atmosphere). However, many
chemical processes take place at very high pressure. For example, ammonia is made at pressures of 220
atmospheres or more. Under these conditions, the ideal gas equation of state may not be a valid
representation of reality.
The first generalization of the ideal gas law was the van der Waal’s equation of state:

where b accounts for excluded volume ( a second molecule cannot use the same space already use by the
first molecule), and a accounts for the interaction force between two molecules. This extension is just a first
step, however, it will not be a good approximation at extremely high temperatures.
The Redlich-Kwong equation of state is a modification of van der Waal’s equation of state:
where

The alpha is particular to Redlich-Kwong equation of state.


The Redlich-Kwong equation of state was modified further by Soave to give the Redlich-Kwong-
Soave equation of state ( called RK-Soave ), which is common one in process simulators:

The parameter alpha is given a different formula,

The ω is the acentric factor, which is a tabulated quantity for many substances. Thus, the value of alpha
can be computed for each chemical and reduced temperature.
The Peng Robinson is another variation:

All these equations can be rearranged into a cubic function of specific volume. The form of the
Redlich-Kwong and Redlich-Kwong-Soave equation of state is

When given the temperature and pressure of a gaseous mixture, and the parameters a and b, then to find
the specific volume one would have to solve the cubic equation of state for specific volume.
For a pure component, the parameters a and b are determined from the critical temperature and
critical pressure, and possibly acentric factor. These are all tabulated quantities, and there are even
correlations for them in terms of vapor pressure and normal boiling point.
For mixtures, it is necessary to combine the values of a and b for each component according to the
composition of the gaseous mixture. Common mixing rules are shown below, in which the ys are the mole
fraction of each chemical in the vapor phase.

or
where

or

Thus, the only difference between the problem for a pure component and that for a mixture is in evaluation
of the parameters a and b.

4. Resources:
Matlab

5. Procedure:
1. a. To determine the value of x that will satisfy the equation:

cos (x) – 2x3 = 0

Issue the command in MATLAB command window:

>> f=‘cos(x) – 2*x^3’

>> x = fzero(f, 0.5)

In the parameter of fzero function, 0.5 is a value of x near to where the function crosses the x-axis.

It may also represent the best guess of the solution.Try other values. Show the results.

b. To create an m-file (filename: yourSurname_le06_p1b), the contents will be

clc

f = ‘cos(x) – 2*x^3’; % suppress the output


x = fzero(f, 0.5)

c. To create a function file and an m-file (filename: yourSurname_le06_p1c), the contents of the

files will be

For function file:

function f = myfunction (x)

% x is the input and f is the output

f = cos(x) – 2*x^3;

end

For m-file:

clc

x = fzero(‘myfunction’,0.5)

Run the m-file

2. a.To determine the graph of 2sin(x) – x1/2 + 2.5 from 0 to 4π. Issue the command in MATLAB
command window:

>> fplot('2*sin(x) - sqrt(x) + 2.5', [0,4*pi])

Show the results.

Notice that the graph passes the x axis near x=3. To determine the value where the graph

crosses the x axis, issue the command:

>>x1 = fzero('2*sin(x) - sqrt(x) + 2.5',3)

Notice that the graph passes the x axis near x=6. To determine the value where the graph

crosses the x axis, issue the command:

>>x2 = fzero('2*sin(x) - sqrt(x) + 2.5',6)

Notice that the graph passes the x axis near x=6. To determine the value where the graph

crosses the x axis, issue the command:

>> x3 = fzero('2*sin(x) - sqrt(x) + 2.5',9)


Show the results.

b. Create an m-file for Procedure 2a. Show the contents of the m-file and the results.

c. Create a function and m-files for Procedure 2a. Show the contents of the files and the results.

3. To calculate the volume of 2 moles of CO2 ( a = 3.59 L3-atm/mol2, and b = 0.0427 L/mol) at
temperature of 50oC, and pressure of 6 atm using van der Waal’s equation.

( P + n2a/ V2 ) ( V – nb) = nRT

The contents of m-file ( filename: yourSurname_le06_p3) will be:

global P T n a b R

R=0 08206;

P=6; T = 323.2; n = 2; a = 3.59; b=0.047;

Vest = n*R*T/P;

V = fzero(‘Waals’, Vest)

The contents of function file will be:

function f = Waals(x)

global P T n a b R

f = (P + n^2*a/x^2)*(x-n*b) – n*R*T;

end

In order for the m-file and function files to work correctly, the variables P, T, n, a, b, and R are
declared global. Run the MATLAB program and show the results.

4. To determine the specific volume of n-butane at 500 K and 18 atm using Redlich –Kwong equation
of state,

a. Create a function file with the temperature, pressure, and thermodynamic properties with the
following contents:

function y = specvol(v)

Tc = 425.2; % Data from Perry’s Chemical Handbook/2-138 Critical Constants

pc = 37.5; % Data from Perry’s Chemical Handbook { bar*1x10^5 Pa/bar*1 atm/101,325 Pa}
% Table B.1 Characteristic Properties of Pure Species / Intro ChE Thermo/Smith/Van

%Ness/Abbot

T = 500;

p = 18;

R = 0.08205;

aRK = 0.42748*(R*Tc)^2/pc

aRK = arK*(Tc/T)^0.5

bRK = 0.08664*(T*Tc/pc)

y = p*v^3 – R*T*v^2 + (aRK – p*bRK ^2 – R*T*bRK) *v –aRK*bRK;

Save the file.

b. To evaluate the value of v , having a guess of v=0.2, in the matlab command window issue the
command;

>>v = fzero(‘specvol’,0.2)

Show the results.

c. Us e the command fsolve, instead of fzero in 4b. Show the results.

5. To determine the molar volume for gaseous ammonia at a pressure P = 56 atm and a temperature
T = 450 K using the van der Waals equation of state for the following reduced pressures: P r =
0.0503144, 1, 2, 4, 10, and 20.

a. The function file contains the following:

function x = waalsvol(vol)

global press a b R T

x = press*vol^3 – press*b*vol^2 – R*T*vol^2 + a*vol – a*b;

b. The m-file contains the following:

% filename: yourSurname_le6_p05b.m

clear all

format short e
global press a b R T

% set the constants

Pcrit = 111.3 ; % in atm

Tcrit = 405.5; % in Kelvin

R = 0.08206; % in li. atm/mole.K

T = 450 ; % in K

% the different values of pressure are stored in a single vector

Preduced = [ 0.0503144 1 2 4 10 20];

a = 27/64*R^2*Tcrit^2/Pcrit;

b = R*Tcrit/(8*Pcrit);

% each pass in a loop varies the press and then the volume is calculated

for j = 1:6

press = Pcrit*Preduced(j)

volguess = R*T/press;

% Use fzero or fsolve to calculate volume

vol = fzero(‘waalsvol’, volguess);

result(j,1) = Preduced(j);

result(j,2) = vol;

end

% end of calculation

disp(‘Preduced Molar Vol ‘)

disp(result)

6. Repeat Procedure 4 using five different gases to be assigned by your instructor. Use Perry’s
Chemical Handbook/2-138 Critical Constants.

7. Repeat Procedure 5 using the same five different gases assigned to you by your instructor.
Course: CHE 508 – Computer Applications in ChE Laboratory Exercise No.: 6
Group No.: Section: CH51FC1
Group Members: MAWILI, MIA. BEATRICE B. Date Performed: September 2, 2019
Date Submitted: September 9, 2019
Instructor: Engr. Crispulo G. Maranan

6. Data and Results:

Procedure Results
1
>> f='cos (x) - 2*x^3'

f=

cos (x) - 2*x^3

>> x = fzero(f,0.5)

x=

0.7214

a >> x= fzero (f, 0.11)

x=

0.7214

>> x= fzero (f, 0.7)

x=

0.7214

clc
f='cos(x)-2*x^3'; %suppress the output
x=fzero(f,0.5);
fprintf('Ans: %0.4f. ' ,x);
b
COMMAND WINDOW:

Ans: 0.7214. >>


FUNCTION FILE:

function f = MAWILI_le06_p1c(x)
f = cos(x) - 2*x^3;
end

EDITOR WINDOW:
c
clc
x=fzero(f, 0.5);
fprintf('x = %0.4f' , x);

COMMAND WINDOW:

x = 0.7214>>

COMMAND WINDOW:

>> fplot('2*sin(x)-sqrt(x)+2.',[0,4*pi])

>> x1=fzero('2*sin(x)-sqrt(x)+2.5',3)

x1 =

3.4664
a
>> x2=fzero('2*sin(x)-sqrt(x)+2.5', 6)

x2 =

6.2869

>> x3=fzero('2*sin(x)-sqrt(x)+2.5',9)

x3 =

9.1585

b clc;
fplot('2*sin(x)-sqrt(x)+2.5', [0,4*pi]);
x1 = fzero('2*sin(x) - sqrt(x) + 2.5',3);
fprintf('x1=%0.4f. ', x1);
disp(' ');
x2 = fzero('2*sin(x) - sqrt(x) + 2.5',6);
fprintf('x2=%0.4f. ', x2);
disp(' ');
x3 = fzero('2*sin(x) - sqrt(x) + 2.5',9);
fprintf('x3=%0.4f. ', x3);
disp(' ');

clc;
fplot('2*sin(x)-sqrt(x)+2.5', [0,4*pi]);
x1=fzero('MAWILI_le06_p2cf',3);
x2=fzero('MAWILI_le06_p2cf',6);
x3=fzero('MAWILI_le06_p2cf',9);
c fprintf('x1=%0.4f. ', x1);
disp(' ');
fprintf('x2=%0.4f. ', x2);
disp(' ');
fprintf('x3=%0.4f. ', x3);
disp(' ');
FUNCTION FILE:

function f = MAWILI_le06_p2cf(x)
f=2*sin(x)-sqrt(x)+2.5';[0.4*pi];
end

clc;
global P T n a b R
R=0.08206;
P=6; T=323; n=2; a=3.59; b=0.047;
Vest=n*R*T/P;
V=fzero('Waals', Vest);
fprintf('V = %0.4f. ' , V);

COMMAND WINDOW:

V = 8.6556. >>

FUNCTION FILE:

function f = Waals (x)


global P T n a b R
f=(P+n^2*a/x^2)*(x-n*b) - n*R*T;
end
4

function y = MAWILI_le06_p4(v)
Tc = 425.2; % Data from Perry’s Chemical Handbook/2-138 Critical Constants
pc = 37.5; % Data from Perry’s Chemical Handbook { bar*1x10^5 Pa/bar*1
atm/101,325 Pa}
% Table B.1 Characteristic Properties of Pure Species / Intro ChE
Thermo/Smith/Van
%Ness/Abbot
T = 500;
a p = 18;
R = 0.08205;
arK = 0.42748*(R*Tc)^2/pc;
aRK = arK*(Tc/T)^0.5;
bRK = 0.08664*(T*Tc/pc);
y = p*v^3 - R*T*v^2 + (aRK - p*bRK ^2 - R*T*bRK) *v - aRK*bRK;

>> v=fzero('MAWILI_le06_p4', 0.2)

b v=

-0.0014

>> fsolve('MAWILI_le06_p4', 0.2)

Equation solved.

fsolve completed because the vector of function values is near zero


as measured by the default value of the function tolerance, and
the problem appears regular as measured by the gradient.

c <stopping criteria details>

ans =

-0.0014

5
FUNCTION FILE:

function x = Waalsvol5(vol)
a
global press a b R T
x=press*vol^3-press*b*vol^2-R*T*vol^2+a*vol-a*b;
end

clc
format short e
global press a b R T
%set the constants
Pcrit = 111.3; % in atm
Tcrit = 405.5; % in Kelvin
R=0.0820; T=450;
Preduced = [0.0503144 1 2 4 10 20];
a = 27/64*R^2*Tcrit^2/Pcrit;
b b = R*Tcrit/(8*Pcrit);
for j = 1:6
press = Pcrit*Preduced(j);
volguess = R*T/press;
vol = fzero('Waalsvol5', volguess);
result(j,1) = Preduced(j);
result(j,2) = vol;
end
disp('Preduced Molar Vol');
disp(result)

COMMAND WINDOW:

Preduced Molar Vol


5.0314e-02 6.5124e+00
1.0000e+00 2.3334e-01
c
2.0000e+00 7.7211e-02
4.0000e+00 6.0610e-02
1.0000e+01 5.0838e-02
2.0000e+01 4.6141e-02

6
Di – Isopropyl Ether (C6H14O)

function y = MAWILI_le06_p6_1stCompound (v)


Tc = 500.05 ; % Data from Perry’s Chemical Handbook/2-138 Critical Constants
pc= 2.88/0.101325; % Data from Perry’s Chemical Handbook { MPa*(1atm/0.101325
MPa)}

T = 500;
p = 18;
a
R = 0.08205;
arK = 0.42748*(R*Tc)^2/pc;
aRK = arK*(Tc/T)^0.5;
bRK = 0.08664*(T*Tc/pc);
y = p*v^3 - R*T*v^2 + (aRK - p*bRK ^2 - R*T*bRK) *v - aRK*bRK;
end

>> fzero(‘MAWILI_le06_p6_1stCompound', 0.2)

ans =
b
-2.1165e+006

>> fsolve('MAWILI_le06_p6_1stCompound', 0.2)

Equation solved.

fsolve completed because the vector of function values is near zero


as measured by the default value of the function tolerance, and
the problem appears regular as measured by the gradient.

c <stopping criteria details>

ans =

-2.1165e+006

Di – isopropyl ketone (C7H14O)


function y = MAWILI_le06_p6_2ndCompound (v)
Tc = 576; % Data from Perry’s Chemical Handbook/2-138 Critical Constants
pc= 3.02/0.101325; % Data from Perry’s Chemical Handbook { MPa*(1atm/0.101325
MPa)}

T = 500;
a p = 18;
R = 0.08205;
arK = 0.42748*(R*Tc)^2/pc;
aRK = arK*(Tc/T)^0.5;
bRK = 0.08664*(T*Tc/pc);
y = p*v^3 - R*T*v^2 + (aRK - p*bRK ^2 - R*T*bRK) *v - aRK*bRK;
end

>> fzero('MAWILI_le06_p6_1stCompound', 0.2)

b ans =

-2.5588e+006

>> fsolve('MAWILI_le06_p6_1stCompound', 0.2)

Equation solved.

fsolve completed because the vector of function values is near zero


as measured by the default value of the function tolerance, and
the problem appears regular as measured by the gradient.
c
<stopping criteria details>

ans =

-2.5588e+006

1,1 - Dimethoxyethane (C4H10O2)

function y = MAWILI_le06_p6_3rdCompound (v)


Tc = 507.8 ; % Data from Perry’s Chemical Handbook/2-138 Critical Constants
pc= 3.773/0.101325; % Data from Perry’s Chemical Handbook { MPa*(1atm/0.101325
a
MPa)}

T = 500;
p = 18;
R = 0.08205;
arK = 0.42748*(R*Tc)^2/pc;
aRK = arK*(Tc/T)^0.5;
bRK = 0.08664*(T*Tc/pc);
y = p*v^3 - R*T*v^2 + (aRK - p*bRK ^2 - R*T*bRK) *v - aRK*bRK;
end

>> fzero('MAWILI_le06_p6_3rdCompound', 0.2)

ans =
b
-1.2731e+006

>> fsolve(‘MAWILI_le06_p6_3rdCompound', 0.20)

Equation solved.

fsolve completed because the vector of function values is near zero


as measured by the default value of the function tolerance, and
the problem appears regular as measured by the gradient.
c
<stopping criteria details>

ans =

-1.2731e+006

1,2 - Dimethoxypropane (C5H12O2)

function y =MAWILI_le06_p6_4thCompound (v)


Tc = 543; % Data from Perry’s Chemical Handbook/2-138 Critical Constants
pc= 3.446/0.101325; % Data from Perry’s Chemical Handbook { MPa*(1atm/0.101325
MPa)}

T = 500;
a p = 18;
R = 0.08205;
arK = 0.42748*(R*Tc)^2/pc;
aRK = arK*(Tc/T)^0.5;
bRK = 0.08664*(T*Tc/pc);
y = p*v^3 - R*T*v^2 + (aRK - p*bRK ^2 - R*T*bRK) *v - aRK*bRK;
end
>> fzero('MAWILI_le06_p6_4thCompound', 0.2)

b ans =

-1.7458e+006

>> fsolve('MAWILI_le06_p6_4thCompound', 0.20)

Equation solved, fsolve stalled.

fsolve stopped because the relative size of the current step is less than the
default value of the step size tolerance squared and the vector of function values
is near zero as measured by the default value of the function tolerance.
c
<stopping criteria details>

ans =

-1.7458e+006

Dimethyl acetylene (C4H6)

function y = MAWILI_le06_p6_5thCompound (v)


Tc = 473.2; % Data from Perry’s Chemical Handbook/2-138 Critical Constants
pc= 4.87/0.101325; % Data from Perry’s Chemical Handbook { MPa*(1atm/0.101325
MPa)}

T = 500;
p = 18;
a
R = 0.08205;
arK = 0.42748*(R*Tc)^2/pc;
aRK = arK*(Tc/T)^0.5;
bRK = 0.08664*(T*Tc/pc);
y = p*v^3 - R*T*v^2 + (aRK - p*bRK ^2 - R*T*bRK) *v - aRK*bRK;
end

>> fzero('MAWILI_le06_p6_5thCompound', 0.2)


b
ans =

-6.6391e+005
>> fsolve('MAWILI_le06_p6_5thCompound', 0.2)

Equation solved.

fsolve completed because the vector of function values is near zero


as measured by the default value of the function tolerance, and
the problem appears regular as measured by the gradient.
c
<stopping criteria details>

ans =

-6.6391e+005

7
Di – Isopropyl Ether (C6H14O)

FUNCTION FILE:

function x = MAWILI_le06_p7_1stCompound (vol)


a global press a b R T
x=press*vol^3-press*b*vol^2-R*T*vol^2+a*vol-a*b;
end

clc
format short e
global press a b R T
%set the constants
Pcrit = 2.88/0.01325; % in atm
Tcrit = 500.05; % in Kelvin
R=0.08206; T=450;
Preduced = [0.0503144 1 2 4 10 20];
b
a = 27/64*R^2*Tcrit^2/Pcrit;
b = R*Tcrit/(8*Pcrit);
for j = 1:6
press = Pcrit*Preduced(j);
volguess = R*T/press;
vol = fzero(‘MAWILI_le06_p7_1stCompound', volguess);
result(j,1) = Preduced(j);
result(j,2) = vol;
end
disp('Preduced Molar Vol');
disp(result)

Preduced Molar Vol


5.0314e-02 1.5573e+00
1.0000e+00 1.9452e-02
c 2.0000e+00 1.8864e-02
4.0000e+00 1.8103e-02
1.0000e+01 1.6962e-02
2.0000e+01 1.6134e-02

Di – isopropyl ketone (C7H14O)

FUNCTION FILE:

function x = MAWILI_le06_p7_2ndCompound (vol)


a
global press a b R T
x=press*vol^3-press*b*vol^2-R*T*vol^2+a*vol-a*b;
end

clc
format short e
global press a b R T
%set the constants
Pcrit = 3.02/0.01325; % in atm
Tcrit = 576; % in Kelvin
R=0.0820; T=450;
Preduced = [0.0503144 1 2 4 10 20];
a = 27/64*R^2*Tcrit^2/Pcrit;
b b = R*Tcrit/(8*Pcrit);
for j = 1:6
press = Pcrit*Preduced(j);
volguess = R*T/press;
vol = fzero('MAWILI_le06_p7_2ndCompound', volguess);
result(j,1) = Preduced(j);
result(j,2) = vol;
end
disp('Preduced Molar Vol');
disp(result)

c
Preduced Molar Vol

5.0314e-02 1.7095e+00
1.0000e+00 2.1768e-02
2.0000e+00 2.1182e-02
4.0000e+00 2.0401e-02
1.0000e+01 1.9195e-02
2.0000e+01 1.8302e-02

1,1 - Dimethoxyethane (C4H10O2)

FUNCTION FILE:

function x = MAWILI_le06_p7_3rdCompound (vol)


a
global press a b R T
x=press*vol^3-press*b*vol^2-R*T*vol^2+a*vol-a*b;
end

clc
format short e
global press a b R T
%set the constants
Pcrit = 3.773/0.01325; % in atm
Tcrit = 507.8; % in Kelvin
R=0.08206; T=450;
Preduced = [0.0503144 1 2 4 10 20];
a = 27/64*R^2*Tcrit^2/Pcrit;
b b = R*Tcrit/(8*Pcrit);
for j = 1:6
press = Pcrit*Preduced(j);
volguess = R*T/press;
vol = fzero('MAWILI_le06_p7_3rdCompound', volguess);
result(j,1) = Preduced(j);
result(j,2) = vol;
end
disp('Preduced Molar Vol');
disp(result)

Preduced Molar Vol


5.0314e-02 1.3126e+00
c 1.0000e+00 1.6172e-02
2.0000e+00 1.5633e-02
4.0000e+00 1.4954e-02
1.0000e+01 1.3962e-02
2.0000e+01 1.3253e-02

1,2 - Dimethoxypropane (C5H12O2)


FUNCTION FILE:

function x = MAWILI_le06_p7_4thCompound (vol)


global press a b R T
a x=press*vol^3-press*b*vol^2-R*T*vol^2+a*vol-a*b;
end

clc
format short e
global press a b R T
%set the constants
Pcrit = 3.446/0.01325; % in atm
Tcrit = 543; % in Kelvin
R=0.08206; T=450;
Preduced = [0.0503144 1 2 4 10 20];
a = 27/64*R^2*Tcrit^2/Pcrit;
b b = R*Tcrit/(8*Pcrit);
for j = 1:6
press = Pcrit*Preduced(j);
volguess = R*T/press;
vol = fzero('MAWILI_le06_p7_4thCompound', volguess);
result(j,1) = Preduced(j);
result(j,2) = vol;
end
disp('Preduced Molar Vol');
disp(result)

Preduced Molar Vol


5.0314e-02 3.8382e+00
1.0000e+00 4.6405e-02
2.0000e+00 4.4562e-02
4.0000e+00 4.2365e-02
c
1.0000e+01 3.9301e-02
2.0000e+01 3.7177e-02

Dimethyl acetylene (C4H6)


FUNCTION FILE:

function x = MAWILI_le06_p7_5thCompound (vol)


a
global press a b R T
x=press*vol^3-press*b*vol^2-R*T*vol^2+a*vol-a*b;
end

clc
format short e
global press a b R T
%set the constants
Pcrit = 4.87/0.01325; % in atm
Tcrit = 473.2; % in Kelvin
R=0.0820; T=450;
Preduced = [0.0503144 1 2 4 10 20];
a = 27/64*R^2*Tcrit^2/Pcrit;
b b = R*Tcrit/(8*Pcrit);
for j = 1:6
press = Pcrit*Preduced(j);
volguess = R*T/press;
vol = fzero('MAWILI_le06_p7_5thCompound', volguess);
result(j,1) = Preduced(j);
result(j,2) = vol;
end
disp('Preduced Molar Vol');
disp(result)

Preduced Molar Vol


5.0314e-02 2.2895e+00
1.0000e+00 3.0088e-02
c 2.0000e+00 2.9396e-02
4.0000e+00 2.8439e-02
1.0000e+01 2.6905e-02
2.0000e+01 2.5736e-02

7. Conclusion:
I therefore conclude that MATLAB can be used to compute for the different things that can be computed in
the Van Der Waals Equation, the Equations of State, and the different equations that can be used in our
degree, Chemical Engineering. We can use our knowledge in MATLAB in order to compute for the different
values that a problem will require us to answer.
8. Assessment (Rubric for Laboratory Performance):
TECHNOLOGICAL INSTITUTE OF THE PHILIPPINES
RUBRIC FOR MODERN TOOL USAGE
(Engineering Programs)
Student Outcome (e): Use the techniques, skills, and modern engineering tools necessary for engineering
practice in complex engineering activities.
Program: Chemical Engineering Course: CHE 508 Section: CH51FC1 1ST Sem SY 2019-2020
Performance Unsatisfactory Developing Satisfactory Very Satisfactory Score
Indicators 1 2 3 4
1. Apply Fails to identify Identifies Identifies modern Recognizes the
appropriate any modern modern techniques and is benefits and
techniques, techniques to techniques but able to apply constraints of
skills, and perform fails to apply these in modern
modern discipline- these in performing engineering tools
tools to specific performing discipline-specific and shows
perform a engineering discipline- engineering task. intention to apply
discipline- task. specific them for
specific engineering engineering
engineering task. practice.
task.
2. Demonstrate Fails to apply Attempts to Shows ability to Shows ability to
skills in any modern apply modern apply fundamental apply the most
applying tools to solve tools but has procedures in appropriate and
different engineering difficulties to using modern effective modern
techniques problems. solve tools when solving tools to solve
and modern engineering engineering engineering
tools to problems. problems. problems.
solve
engineering
problems.
3. Recognize Does not Recognizes Recognizes the Recognizes the
the benefits recognize the some benefits benefits and need for benefits
and benefits and and constraints of and constraints of
constraints constraints of constraints of modern modern
of modern modern modern engineering tools engineering tools
engineering engineering engineering and shows and makes good
tools. tools. tools. intention to apply use of them for
them for engineering
engineering practice.
practice.
Total Score
Mean Score = (Total Score / 3)
Percentage Rating = (Total Score / 12) x 100%
Evaluated by: ______________________________________ Sept. 09, 2019
Printed Name and Signature of Faculty Member Date

S-ar putea să vă placă și