DNCV3MS2 Supp Exam 06
DNCV3MS2 Supp Exam 06
INSTRUCTIONS :
NOTES :
DATA :
THE EXAM QUESTION PAPER MUST BE RETURNED WITH YOUR ANSWER SHEET
UNIVERSITY OF KZN SUPPLEMENTARY EXAMINATION JANUARY 2007
DNV3MS2 : MATHEMATICAL SYSTEMS BSc CIVIL ENGINEERING
PAGE 1
QUESTION 1 [20]
The settlement S of a clay substrate is given by
S = 0.43 Cc H (1 + e0)-1 Ln [1 + σ]
where Cc is the compression index, H is the thickness of the clay layer, e0 is the initial void
ratio, and σ = Δp/p0 is the relative increase in effective stress.
a) Carry out a sensitivity analysis to investigate the effects of uncertainties in Cc, e0
and σ on the settlement for Cc = 0.7, H = 3m, e0 = 0.5, and σ = 0.5.
b) If the uncertainties in Cc, e0, and σ are 10%, 20% and 20% respectively, which
contributes most to the uncertainty in the settlement?
QUESTION 2 [20]
Using the settlement equation from question 1 with H = 3m, e0 = 0.7, Cc = 0.4, apply the
Bisection and Newton-Raphson algorithms to calculate the value of σ for which the
settlement is 30mm to within an accuracy of 5%. Tabulate the results and compare the
two methods.
QUESTION 3 [20]
Suppose that the change in the concentration c(t) of contaminants in a river due to an
accident at an upstream factory can be described by the following differential equation
dc(t)/dt = -2c(t) + 5e-t
th
(a) Use the Euler and the 4 – order Runge Kutta methods to solve the differential
equation numerically for 0 ≤ t ≤ 1, with a step size Δt = 0.2 and with c(0) =2.
Repeat the Euler method calculation with the step size halved. [15]
(b) Plot your results and discuss the relative accuracy of the two methods.
Note that the exact analytical solution is c(t) = 5e-t - 3e-2t [5]
QUESTION 4 [20]
A long concrete wall is two metres thick. The initial temperatures (oC) inside the wall are
distributed in a cubic manner as shown in the cross-sectional sketch. If both faces of the
wall are maintained at 350oC, compute the temperatures in the wall as a function of time t
until the value at the centreline has dropped to within 50oC of the face values. Note the
symmetry. Use λ = K Δt/Δx2 = ½ with Δx = 0.25m and thermal conductivity K = 10-5 m2/s.
350 350
358 377 414 475 414 377 358
x
2m
FORMULA SHEET
Newton-Raphson:
xk+1 = xk - F(xk)/F'(xk)
ξa (k+1)
= |( x(k+1) - x(k))/x(k+1)|
NUMERICAL OPTIMIZATION
To minimize F(x)
Golden-section search:
Golden ratio R = ½ (5½ – 1) = 0.61803…
x1 = xl + R*(xu - xl) ; x2 = xu – R*(xu - xl)
F(xopt) = Min[F(x1), F(x2)]
ξa = (1 - R)*|( xu - xl)/ xopt|