All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Solving a given problem by using Explicit and implicit Analysis Aim: To solve the given problem using both explicit and implicit method and plot the results. Problem Statement: Consider the case of a simple bar in tension as shown in Figure 1. Suppose that the force in the bar is a nonlinear function of the displacement.…
Anish Augustine
updated on 24 Aug 2020
Solving a given problem by using Explicit and implicit Analysis
Aim: To solve the given problem using both explicit and implicit method and plot the results.
Problem Statement: Consider the case of a simple bar in tension as shown in Figure 1. Suppose that the force in the bar is a nonlinear function of the displacement.
f(u)=u3+9u2+4u
The stiffness of the bar is k(u)=dfdu=3u2+18u+4
Fig.1. Bar in tension.
Solution:
Explicit Analysis:
An Explicit FEM analysis does the incremental procedure and at the end of each increment updates the stiffness matrix based on geometry changes or material changes. Then a new stiffness matrix is constructed and the next increment of load is applied to the system. This method does not enforce equilibrium of the internal structure forces with the externally applied loads.
Clearly it is possible to plot a graph of force, f, versus displacement, u, by using force equation. However, if the nonlinear force versus displacement relationship is not known, but the stiffness is known, it is possible to construct the graph of force versus displacement numerically. One method is to use an incremental explicit load control scheme. For this example three equal load increments (or steps) of ΔF=1 unit each are used to load the tension bar. The variables used are u for displacement, f for internal force in the bar, F for external force applied to the bar and k for stiffness. Incremental displacements or incremental externally applied forces are represented as Δu or ΔF, respectively. Use is made of the relationship ΔF=kΔu. The analysis proceeds as follows:
Force function, f(u)=u3+9u2+4u
Stiffness, k(u)=dfdu=3u2+18u+4
Step 1
u0=0,
⇒k(u0)=3u20+18u0+4=4
ΔF=1,
⇒Δu1=ΔFk(u0)=14=0.25
∴u1=u0+Δu1=0.25
Fext=1,
fi=u31+9u21+4u1=1.5781
Step 2
u1=0.25,
⇒k(u1)=3u21+18u1+4=8.6875
ΔF=1,
⇒Δu2=ΔFk(u1)=18.6875=0.1151
∴u2=u1+Δu2=0.3681
Fext=ΔF+ΔF=2,
fi=u32+9u22+4u2=2.7417
Step 3
u2=0.3681,
⇒k(u2)=3u22+18u2+4=11.0323
ΔF=1,
⇒Δu3=ΔFk(u2)=111.0323=0.0906
∴u3=u2+Δu3=0.4587
Fext=ΔF+ΔF+ΔF=3,
fi=u33+9u23+4u3=3.8249
Fext≠fi
Table: Summary of Explicit analysis result.
stepi | ΔFi | Δui | ui | (Fext)i | (fi)i | R=fi-Fext |
1 | 1 | 0.25 | 0.25 | 1 | 1.5781 | 0.5781 |
2 | 1 | 0.1151 | 0.3681 | 2 | 2.7417 | 0.7417 |
3 | 1 | 0.0906 | 0.4587 | 3 | 3.8249 | 0.8249 |
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)=fi−Fext. Expanding the residual as a Taylor series about the current displacement uj gives
Rj+1=Rj(uj)+dR(uj)duδuj+1+...=Rj+k(uj)δuj+1+...
By neglecting higher order terms in the series, setting Rj+1=0 and solving for δuj+1 the following correction is obtained
δuj+1=−[k(uj)]−1Rj
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 given problem a tolerance of 10−2 is chosen). The implicit analysis proceeds as follows
Step 1
u0=0,
⇒k(u0)=3u20+18u0+4=4
ΔF=1,
⇒Δu1=ΔFk(u0)=14=0.25
∴u1=u0+Δu1=0.25
Check the residual,
Fext=ΔF=1
fi=u31+9u21+4u1=1.5781
∴R0=fi-Fext=0.5781
Since, ||R0||>0.01 ,Newton Raphson iteration is necessary.
Calculate the correction to u1=u(0)1
k(u(0)1)=3u21+18u1+4=8.6875
δu(1)=-[k(u(0)1)]-1R(0)=-0.0665
The updated value of u(1)1=u(0)1+δu(1)=0.1835
Check the residual again,
Fext=ΔF=1
fi=(u(1)1)3+9(u(1)1)2+4u(1)1=1.0432
∴R(1)=fi-Fext=0.0432
Since, ||R(1)||>0.01 , Newton Raphson iteration is necessary
Calculate the correction correction to u1=u(1)1
k(u(1)1)=3(u(1)1)2+18u(1)1+4=7.4040
δ(2)=δu(1)-[k(u(1)1)]-1R(1)=-0.0723
The updated value of u(2)1=u(0)1+δu(2)1=0.1777
Check the residual again,
Fext=ΔF=1
fi=(u(2)1)3+9(u(2)1)2+4u(2)1=1.0006
∴R(2)=fi-Fext=0.0006
Since, ||R(2)||<0.01 , Newton Raphson iteration is not necessary.
The final value of u1=u(2)1=0.1777
Step 2
u1=0.1777
⇒k(u1)=3u21+18u1+4=7.2933
ΔF=1
⇒Δu2=ΔFk(u1)=0.1371
∴u2=u1+Δu2=0.3148
Check the residual,
Fext=ΔF+ΔF=2
fi=u32+9u22+4u2=2.1823
∴R(0)=fi-Fext=0.1823
Since, ||R0||>0.01 ,Newton Raphson iteration is necessary.
Calculate the correction to u2=u(0)2
k(u(0)2)=3u22+18u2+4=9.9637
δu(1)=-[k(u(0)2)]-1R(0)=-0.0183
The updated value of u(1)2=u(0)2+δu(1)=0.2965
Check the residual again,
Fext=ΔF+ΔF=2
fi=u32+9u22+4u2=2.1823
∴R(1)=fi-Fext=0.0033
Since, ||R(1)||<0.01 , Newton Raphson iteration is not necessary.
The final value of u2=u(1)2=0.2965
Step 3
u2=0.2965
⇒k(u2)=3u22+18u2+4=9.6007
ΔF=1
⇒Δu3=ΔFk(u2)=0.1041
∴u3=u2+Δu3=0.4006
Check the residual,
Fext=ΔF+ΔF+ΔF=3
fi=u33+9u23+4u3=3.111
∴R(0)=fi-Fext=0.111
Since, ||R0||>0.01 ,Newton Raphson iteration is necessary.
Calculate the correction to u3=u(0)3
k(u(0)3)=3u23+18u3+4=11.6922
δu(1)=-[k(u(0)3)]-1R(0)=-0.00949
The updated value of u(1)3=u(0)3+δu(1)=0.3911
Check the residual again,
Fext=ΔF+ΔF+ΔF=3
fi=(u(1)3)3+9(u(1)3)2+4u(1)3=3.0008
∴R(1)=fi-Fext=0.0008
Since, ||R(1)||<0.01 , Newton Raphson iteration is not necessary.
The final value of u3=u(1)3=0.3911
Table: Summary of Implicit analysis result.
stepi | ΔFi | ui | (Fext)i | (fi)i | R=fi-Fext |
1 | 1 | 0.1777 | 1 | 1.0006 | 0.0006 |
2 | 1 | 0.2965 | 2 | 2.0033 | 0.0033 |
3 | 1 | 0.3911 | 3 | 3.0008 | 0.0008 |
Results and Discussion:
Fig.2. Single bar in tension: Comparison of explicit, implicit and exact results of load versus displacement
A plot of the results is shown in Figure 2. It is evident from the plot that the explicit analysis 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 Newton-Raphson iterations correct the incremental steps so that they land on the exact solution according to the specified tolerance. Excellent agreement is achieved with just 3 increments and in each step only two Newton-Raphson iterations are required.
Conclusion:
A nonlinear analysis is illustrated using an incremental explicit and implicit procedure. 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. The techniques demonstrated are for a load control scheme.
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 11 Car Crash simulation
CAR CRASH SIMULATION USING ANSYS WORKBENCH OBJECTIVE 1. To simulate car crash for different thickness of car body, Case-1: Thickness=0.3 mm. Case-2: Thickness=0.7 mm. Case-3: Thickness=1.5 mm. 2. To find out Total deformation and Equivalent stress developed in car body for each case and compare the results. 1. THEORY 1.1…
14 Jul 2021 09:52 AM IST
Week 10 Bullet penetrating a Bucket Challenge
SIMULATION OF BULLET PENETRATING INTO A BUCKET USING ANSYS WORKBENCH OBJECTIVE To simulate bullet penetrating into a bucket for different cases of bucket material, Case-1: Aluminium Alloy NL Case-2: Copper Alloy NL Case-3: Stainless Steel NL To find out Total deformation and Equivalent stress developed in bucket for…
19 Jun 2021 08:51 AM IST
Week 9 Tension and Torsion test challenge
SIMULATION OF TENSION AND TORSION TEST ON A SPECIMEN USING ANSYS WORKBENCH OBJECTIVE To perform the tension and torsion test simulation on the specimen by following the necessary boundary conditions, For the tension test, one end of the specimen has to be displaced to 18mm while keeping the other end fixed. For the torsion…
11 Jun 2021 11:10 AM IST
Week 9 Machining with Planer Challenge
EXPLICIT DYNAMIC ANALYSIS OF MACHINING WITH PLANER USING ANSYS WORKBENCH OBJECTIVE To perform explicit dynamic analysis of machining with planer for the following two different cases of cutting velocity, Case-1: Cutting velocity=20000 mm/s Case-2: Cutting velocity=15000 mm/s To find out Directional Deformation, Equivalent…
06 Jun 2021 03:39 AM 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.