All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Objective: To solve the equation F(u)=u3+9u2+4 using both Explicit and Implicit methods, setting a tolerance of 10-2. To write a detailed report about implicit and explicit methods. To do the calculations in a spreadsheet and to try and plot the graph and compare them. Explicit Method: The explicit method does not…
Sam Cherian
updated on 04 Nov 2020
Objective:
Explicit Method:
The explicit method does not require convergence to occur at each step. There is no check for Residue and hence some errors can accumulate such that a less accurate solution is obtained.
The solver assumes that a global equilibrium exists while calculating the variables and does not verify the global equilibrium. It moves on to the next set of finite element variables after calculating the first set.
The time increment is very short in explicit analysis and this can speed up the solution process. Its the time taken for an elastic wave to travel through a single finite element in the model.
Implicit Method:
In this method, the global equilibrium is established after each time increment. This means that convergence happens to a certain degree at each increment.
Because a global equilibrium is verified at each time increment, the time increments are large and thus causes much higher computational time since the iterations need to reach the global equilibrium at a set tolerance value before proceeding to the next step.
Procedure:
Let us consider the given equation:
F(u)=u3+9u2+4u
Explicit Method:
The Non-linear force vs Displacement relationship is not known but the stiffness is known by differentiating the force with respect to displacement.
Step 1:
k(u)=dFdu=3u2+18u+4
ΔF=KΔU
Initial condition:
u0=0.0
⇒ k(u0)=1,ΔF=1,
Substituting the values we get,
k(0)=4
Δu1=ΔFk(u0)=14=0.25,
u1=u0+Δu1=0.25
Fexternal=1
Finternal=u3+9u2+4u=1.5781 (∵u=u1)
Step 2:
k(u1)=k(0.25)=8.6875, ΔF=1
Δ(u2)=ΔFk(u1)=18.6875=0.115
u2=u1+Δu2=0.25+0.115=0.3651
Fexternal=1+1=2
Finternal=u3+9u2+4u=2.708;(∵u=u2)
Step 3:
k(u2)=k(0.3651)=10.969, ΔF=1
Δ(u3)=ΔFk(u2)=110.969=0.0911
u3=u2+Δu3=0.3651+0.0911=0.4562
Fexternal=1+1+1=3
Finternal=u3+9u2+4u=3.7928;(∵u=u3)
The following table tabluates the values obtained along with the residual for each step.
From the table we can see that the external and internal forces are not in Equilibrium.
Implicit Method:
The Implicit method is similar to the Explicit one, but the different lies in the fact that at the end of each load step, Newton-Raphson iterations are used to create an equilibrium before moving on to the next step.
An incremental force is applied to advance the solution in the forward direction in the beginning of each step. and corrections are made to the displacement to achieve equilibrium by making sure the stiffness is linear for each step.
The Residual is minimized by using the Newton Raphson Method.
R=Finternal-Fexternal
Expanding the residual as a Taylor series about the current displacement uj gives:
Rj+1=Rj(uj)+dR(uj)duδuj+1+...
By neglecting higher order terms in the series, setting R^(j+1) = 0 and solving for deltau^j+1 the following correction is obtained
deltau^(j+1) = −[k(u^j)]^(−1)R^j
Here the iteration variable is j and tolerance value is 10^-2
Step 1:
u_0 = 0,
k(u_0) = 4,
DeltaF = 1,
Deltau_1 = DeltauF/k(u_0) = 0.25
u_1 = u_0 + Deltau_1 = 0.25
Residual check:
F_"internal" = u_1^3 + 9u_1^2 + 4u_1 = 1.578
F_"external" = DeltaF =1
R^(0) = F_"internal" - F_"external" = 0.578
R^(0) > 0.01 Newton Raphson iterations are necessary here
Correction:
deltau^(1) = −[k(u_1^(0))]^(−1)R^(0) = -(8.6875)^(-1) . 0.578 = -0.0665
Updated value of u_1^(1)= 0.25 - 0.0665 = 0.1835
Checking residual again:
F_"internal" = u_1^(1)^3 + 9u_1^(1)^2 + 4u_1^(1) = 1.0432
F_"external" = DeltaF =1
R^(1) = F_"internal" - F_"external" = 0.0432 this is greater than the tolerance and hence further iterations are necessary.
deltau^(2) =deltau^(1) −[k(u_1^(1))]^(−1)R^(1) =-0.0665 -(7.404)^(-1) . 0.0432 = -0.0723
Updated value of u_1^(2)= 0.25 - 0.00723 = 0.1777
Checking Residual:
F_"internal" = u_1^(2)^3 + 9u_1^(2)^2 + 4u_1^(2) = 1.0006
F_"external" = DeltaF =1
R^(2) = F_"internal" - F_"external" = 0.0006 this is lesser than the tolerance and hence further iterations are not necessary.
Therefore final value of u_1 = u_1^(2) = 0.1777
Step 2:
u_1 = 0.1777,
k(u_1) = 7.2933,
DeltaF = 1,
Deltau_2 = DeltauF/k(u_1) = 0.1371
u_2 = u_1 + Deltau_2 = 0.3148
Residual check:
F_"internal" = u_2^3 + 9u_2^2 + 4u_2 = 2.1822
F_"external" = DeltaF+DeltaF =2
R^(0) = F_"internal" - F_"external" = 0.1822
R^(0) > 0.01 Newton Raphson iterations are necessary here
Correction:
deltau^(1) = −[k(u_2^(0))]^(−1)R^(0) = -(9.9637)^(-1) . 0.1822 = -0.0182
Updated value of u_2^(1)= 0.3148 - 0.0182 = 0.2966
Checking residual again:
F_"internal" = u_2^3+ 9u_2^2 + 4u_2^ = 2.0042
F_"external" = DeltaF+DeltaF =2
R^(1) = F_"internal" - F_"external" = 0.0042 this is lesser than the tolerance and hence further iterations are not necessary
Therefore final value of u_2 = u_2^(1) = 0.2966
Step 3:
u_2 = 0.2966,
k(u_1) = 9.6027
DeltaF = 1,
Deltau_3 = DeltauF/k(u_2) = 0.1041
u_3 = u_2 + Deltau_3 = 0.4007
Residual check:
F_"internal" = u_3^3 + 9u_3^2 + 4u_3 = 3.1121
F_"external" = DeltaF+DeltaF+DeltaF =3
R^(0) = F_"internal" - F_"external" = 0.1121
R^(0) > 0.01 Newton Raphson iterations are necessary here
Correction:
deltau^(2) = −[k(u_3^(0))]^(−1)R^(0) = -(11.6942)^(-1) . 0.1121 = -0.00958
Updated value of u_3^(1)= 0.4007 - 0.00958 = 0.3911
Checking residual again:
`F_"internal" = u_3^3 + 9u_3^2 + 4u_3 = 3.0008
F_"external" = DeltaF+DeltaF+DeltaF =3
R^(1) = F_"internal" - F_"external" = 0.0008 this is lesser than the tolerance and hence further iterations are not necessary
Therefore final value of u_3 = u_3^(1) = 0.3911
The Results of the implicit analysis is shown in the table below:
From the table we can see that the values are coming close to each other and hence equilibrium.
Results:
Inference from the Graph:
Discussion and Conclusions:
Therefore, a non linear Analysis was illustrated using an incremental process by both Explicit and Implicit methods.
From the Results we can conclude that the explicit analysis is not accurate and drifts away from the solution and this is overcome by using the implicit analysis that uses Newton Raphson iterations to bring about equilibrium between internal and external forces.
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...
Simulating a Simple Crash Scenario of a Crash Box with Two Thicknesses using LS DYNA and Comparing the Results
Objective: To simulate a crash test for a crash box for which the mesh model is given. The crashbox should crash into a rigidwall created using *RIGIDWALL_ keyword. Check the manual to understand and create a rigidwall. Material for the crashbox is steel. The simulation needs to be started using elastic material…
16 Nov 2020 09:57 AM IST
Simple Drop test Simulation on a Smartphone model using LS DYNA
Objective: To create a complete simulation file from the given file having just nodes and elements of two parts to perform a drop test. INITIAL_VELOCITY card is to be used to give velocity specifications for the cellphone. The orientation of the cellphone is also important and there are specific guidelines on how to orient…
10 Nov 2020 12:39 PM IST
Solving the given Non-Linear Equation of Force using Explicit and Implicit Methods and Comparing the Results.
Objective: To solve the equation F(u)=u^3+9u^2+4 using both Explicit and Implicit methods, setting a tolerance of 10^-2. To write a detailed report about implicit and explicit methods. To do the calculations in a spreadsheet and to try and plot the graph and compare them. Explicit Method: The explicit method does not…
04 Nov 2020 01:18 PM IST
Unit Conversion for Consistency of Units in LS Dyna
Objective: To write the given measurements according to the given system of units and to mention the conversion factors for the same. Value of the following measurements are given as follows: MASS - 1kg LENGTH - 1m TIME - 1s FORCE -1N STRESS - 1Pa ENERGY - 1Nm DENSITY - 1Kg/m3 YOUNG'S Modulus - 210GPa Velocity -…
02 Nov 2020 08:22 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.