All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Explicit and Implicit Analysis Hand calculation OBJECTIVE: Solving the given equation F(u) = u3+9u2+4u using both Explicit and Implicit Methods (with the tolerance of 10-2. Explicit: A function in which the dependent variable and independent variable are separated on opposite side of equality are commonly…
Amol Anandrao Kumbhar
updated on 31 Oct 2020
Explicit and Implicit Analysis Hand calculation
OBJECTIVE: Solving the given equation F(u) = u3+9u2+4u using both Explicit and Implicit Methods (with the tolerance of 10-2.
Explicit: A function in which the dependent variable and independent variable are separated on opposite side of equality are commonly known as Explicit functions.
e.g. y = f(x)
It is a method used to compute the state of certain system at a time different from the current time. It can also be said as a direct computation of the dependent variables can be made in terms of existing quantities.
Explicit analysis provides a faster solution in events which have dynamic equilibrium. The main advantage of explicit method is to solve for acceleration. The explicit methods fast and inexpensive computationally. Each increment is calculated extremely fast. Accuracy is not maintained. Time step has to be extremely small.
Implicit: A function in which the dependent variable and independent variables are not separated on opposite sides of the equality are commonly known as implicit function. It can be function Ф (x, y, z) = 0 where x, y are independent variables and z is dependent variable.
e.g.
It is a method of solving to find the unknown using matrix inversions. When a dependent variable is calculated by some set of equations, and to have the final solution an iterative technique or a matrix is required then it’s called an implicit method.
Implicit methods take lot of time to solve dynamic and nonlinear problems. Increments are big and due to this it is very slow. Accuracy is more compared to explicit methods. Responsiveness of the model with respect to time may differ to that of an actual model. parameters are dependent on each other at the same time.
Explicit Method
The given equation
F(u) = u3+9u2+4u
Now we can write the stiffness equation of as
--------------------------------(1)
We can represent the stiffness as
= 3u2+18u+4 ------------------------------- (2)
Now with the help of equation (1) and (2) we will compute the problem using incremental explicit load control scheme.
from (1) and (2) we get,
ΔF = KΔU ------------------------------- (3)
Step 1:
for the first step lets us consider an initial condition where, ΔF = 1, u (0) = 0 substituting in equation (2),
K (0) = 3(0)2 + 18(0) + 4 = 4
Then we can use the values in equation (3)
ΔU1 = = = 0.25
u1 = u (0) + ΔU1
u1 = 0 + 0.25 = 0.25
u1 = 0.25
Step 2:
Now we have to consider u = u1 then we can write from equation 2
= 3u2+18u+4 ------------------------------- (2)
k(u1) = 3(0.25)2 + 18(0.25) + 4 --------------------- (As u = u1)
k(u1) = 8.6875
ΔU2 = = = 0.1151
u2 = u1 + ΔU2 = 0.25 + 0.1151
u2= 0.3651
Step 3:
Now we have to consider u = u2 then we can write from equation 2
K(u2) = 3(0.365)2 + 18(0.365) + 4 K(u2) --------------------- (As u = u2)
k(u2) = 10.96
ΔU3 = = = 0.091
u3 = u2 + ΔU3
= 0.3651 + 0.091
u3= 0.456
Finally, from the three steps the following results are obtained.
Fext = ΔF + ΔF + ΔF
Fext = 1 + 1 + 1
Fext = 3
Now we have,
F(u) = u3+9u2+4u
f1 = (u13) + (9u12) + 4u1 = (0.25)3 + (9 * (0.25)2) + (4 * 0.25) = 1.578
f2 = (u23) + (9u22) + 4u2 = (0.365)3 + (9 *(0.365)2) + (4 * 0.36) = 2.707
f3 = (u33) + (9u32) + 4u3 = (0.456)3 + (9 *(0.456)2) + (4 * 0.45) = 3.791
It is evident from the results that external and internal forces are NOT in equilibrium because
Fext ≠ fint. Table 1 summarizes the main results for the explicit analysis.
Step i |
ΔFi |
ΔUi |
ui |
(Fext)i |
(Fint)i |
(Fint)I - (Fext)I = R |
1 |
1 |
0.25 |
0.25 |
1 |
1.578 |
0.578 |
2 |
1 |
0.1151 |
0.3651 |
2 |
2.707 |
0.707 |
3 |
1 |
0.091 |
0.456 |
3 |
3.791 |
0.791 |
Implicit Analysis
An implicit analysis is the same as the explicit analysis, except that at the end of each step
Newton-Raphson iterations are used to enforce equilibrium before moving to the next step.
Basically, an incremental force is applied to advance the solution forward at the beginning
of a step. However, internal forces and external forces will not be in equilibrium unless the
stiffness is linear for the given step. Hence, in order to achieve equilibrium, corrections must
be made to the displacement. This is accomplished by using Newton-Raphson iterations to
minimize the residual, R(u) = fint − Fext. Expanding the residual as a Taylor series about
the current displacement uj gives
= + + +… = + k ()+…
By neglecting higher order terms in the series, setting Rj+1 = 0 and solving for the
following correction is obtained
= − [k ()] -1
Notice that the iteration variable is j and it may take several iterations for the norm of the
residual, ||R|| to be reduced below the chosen tolerance criteria (for the example below a tolerance
of 10-2 is chosen). The implicit analysis proceeds as follows (results are approximate,
they are more precise if done in a computer to machine precision):
In implicit analysis, at the end of each step Newton-Raphson iteration is used to bring equilibrium and then proceeded to further steps.
Step 1:
consider u= 0, then, F(u) = u3+9u2+4u becomes
differentiating above eq
3u2+18u+4
K (0) = 3(0)2 + 18(0) + 4
K (0) = 4
ΔU1 = = = 0.25
ΔU1 = 0.25
u1 = u (0) + ΔU1
u1 = 0 + 0.25 = 0.25
u1 = 0.25
f1 = (u13) + (9u12) + 4u1 = (0.25)3 + (9 * (0.25)2) + (4 * 0.25) = 1.578
Check the Residual (Fint)I - (Fext)I = R, As
R0= 1.578 -1 = 0.578
R0 which is greater than 0.01 i.e. (0.578 >0.01), therefore Newton Raphson model has to be followed
U1 = U10
3u2+18u+4
K (1) = 3(0.25)2 + 18(0.25) + 4
K (1) = 8.687
= − [k ()0] -1
= - [8.687]-1*0.578
= - 0.066
u1 = u10 +
u1 = 0.25-0.066 = 0.184
u1 = 0.184
f2 = (u1)3 + (9 u1)2 + 4 u1 = (0.184)3 + (9 * (0.184)2) + (4 * 0.184) = 1.046
R1 = fi − Fext = 1.0469 − 1 = 0.0469
which is greater than 0.01 i.e. (0.04>0.01),
Step 2:
U1 = U10
K (2) = 3(0.184)2 + 18(0.184) + 4
K (2) = 7.413
= − [k ()1] -1
= - 0.066 – [7.413]-1*0.0469
= -0.0723
u12= u10+ ∂u2 = 0.25
= 0.25 − 0.0713
u12 = 0.178
The updated value of u1 is 0.178, then the function will be,
f1 = (u13) + (9u12) + 4u1 = (0.178)3 + (9 * (0.178)2) + (4 * 0.178) = 1.007
therefore,
R1= 1.007 -1 = 0.007
The R value is less than 0.01, therefore, the final value of u1 is 0.178
Step 3:
K (u1) = 9(0.178)2 + 18(0.178) + 4
K (u1) = 7.489
ΔU2 = = = 0.133
u2 = u1 + ΔU2
u2 = 0.178 + 0.133
u2 = 0.311
Here, fext = 2
f2 = (u23) + (9u22) + 4u2 = (0.311)3 + (9 * (0.311)2) + (4 * 0.311) = 2.144
Residual (Fint)I - (Fext)I = R, As
R0= 2.144 -2 = 0.144, which is greater than 0.01 i.e. (0.144>0.01) from Newton Raphson model the updated u2 is
u2 = 0.296
Step 4:
K (u2) = 9(0.296)2 + 18(0.296) + 4
K (u2) = 10.116
ΔU3 = = = 0.098
u3 = u2 + ΔU3
u3 = 0.296+0.098
u3 = 0.394
here, fext = 1
f3 = (u33) + (9u32) + 4u2 = (0.394)3 + (9 * (0.394)2) + (4 * 0.394) = 3.034
Residual (Fint)I - (Fext)I = R, As
R0= 3.034 -3 = 0.034, which is greater than 0.01 i.e. (0.034>0.01) from Newton Raphson model the updated u2 is
u3 = 0.391
Step i |
ΔFi |
ΔUi |
ui |
(Fext)i |
(Fint)i |
(Fint)I - (Fext)I = R |
1 |
1 |
0.25 |
0.178 |
1 |
1.007 |
0.007 |
2 |
1 |
0.113 |
0.296 |
2 |
2.004 |
0.004 |
3 |
1 |
0.098 |
0.391 |
3 |
3.001 |
0.001 |
It is evident from the plot that the explicit analysis drifts from the exact solution. If 20 increments are used the explicit analysis more closely follows the exact solution. However, even with more increments the explicit analysis still drifts from the exact solution. The drift from the exact solution illustrates the lack of equilibrium between the internal and external forces. To correct for this problem an implicit analysis is required. The results for the implicit analysis are shown in above graphs. The Newton-Raphson iterations correct the incremental steps so that they land on the exact solution according to the specified tolerance.
CONCLUSION:
The results are plotted for comparison. It is evident from the results that the explicit analysis drifts from the true solution. To overcome this problem an implicit analysis is used, which includes Newton-Raphson iterations to enforce equilibrium between internal and external forces.
problem Implicit method is the best way to compute and nd the solution.
From this, we can say that the usage of implicit or explicit system depends upon the problem that needs to be solved. The decision to use implicit and explicit method directly impacts the speed and accuracy.
KINDLY FIND THE ATTACHED FILES. EQUATIONS MAY NOT BE CORRECTLY WRITTEN OVER HERE.
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Week 6 - CHT Analysis on a Graphics card
Objective: To perform a steady state conjugate heat transfer analysis on a model of graphics card. Introduction :The term conjugate heat transfer (CHT) describes the process which involves variation of temperature within solids and fluids, due to thermal interaction between the solids and fluids, the exchange of thermal…
23 Mar 2022 04:17 AM IST
Week 5 - Rayleigh Taylor Instability
Rayleigh Taylor Instability INTRODUCTIONThe Rayleigh–Taylor instability, is the instability of an interface between two fluids of different densities which occurs when the lighter fluid is pushing the heavier fluid with the effect of gravity. Here we have prepared a model with two surfaces on over the above and considered…
07 Mar 2022 05:33 PM IST
Week 3 - External flow simulation over an Ahmed body.
External flow simulation over an Ahmed body. AIM:To simulate flow over ahmed body & to address the below given tasks.1. Describe Ahmed body & its importance.2. Explain the negative pressure in wake.3. Explain significance of the point of seperation. Expected results:1. Velocity & pressure contour of the Ahmed…
07 Mar 2022 02:44 PM IST
Week 4 - CHT Analysis on Exhaust port
CHT Analysis on Exhaust port Objective :In this challenge,1. brief description of why and where a CHT analysis is used.2. simulate both fluid flow and also the heat transfer to the solid i.e., CHT Analysis on an Exhaust port3.calculate the wall heat transfer coefficient on the internal solid surface & show the velocity…
27 Feb 2022 03:12 PM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.