All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
IMPLICIT METHOD : In the Implicit method, the slope value at the unknown Time step is used. i.e, In the equation y(tn+1)=y(tn)+Δt×y′ __________(1) for the given curve as shown in the Figure below…
Avinash manjunath
updated on 21 Feb 2022
IMPLICIT METHOD :
In the Implicit method, the slope value at the unknown Time step is used. i.e, In the equation
y(tn+1)=y(tn)+Δt×y′ __________(1)
for the given curve as shown in the Figure below
The slope value at the Unknown time step is used for finding the value of 'y' at the time step tn+1 .i.e, y′ at tn+1 in equation (1)
thus, the equation (1) becomes
y(t(n+1))=y(t(n))+Δt×y′(t(n+1))___________(2)
This equation is Non -Linear and it requires numerical methods such as Newton raphson's Iteration to solve it.
EXPLICIT METHOD :
The Explcit Method use the slope at the know time step tnin equation (1) i.e y′ at tn in equation(1)
i.e, the equation(1) becomes
y(t(n+1))=y(t(n))+Δt×y′(t(n)) _______(2)
No further effort is required unlike the Implicit method to determine the the value of 'y' at tn+1
AIM : To use the equation u3+9u2+4u ` and solve using both explicit and Implicit methods . The Implicit Method should have a tolerance of 0.001.
ANSWER :
The Force is dependent on the non linear function of the displacement given as
f(u)=u3+9u2+4u
The Load factor can be incremented in steps of 1.i.e, ΔF=1. Also, Stiffness `K(u)=(df//du)= 3u^2+18u^2+4
Explict method :
Step 1 : u0=0;k(u0)=0+0+4=4;ΔF1=1;Δu1=(ΔF1/k(uo))=14
u1=Δu1+u0=(1/4)+0=14=0.25
Step 2 : u1=0.25;k(u1)=3(0.25)2+18(0.25)+4=8.6875;ΔF2=1;Δu2=(ΔF2/k(u1))=18.6875=0.1151
u2=Δu2+u1=0.1151+0.25=0.3651
Step 3 : u2=0.3651;k(u2)=3(0.3651)2+18(0.3651)+4=10.971;ΔF3=1;(ΔF3/k(u2))=110.971=0.09114
u3=Δu3+u2=0.3651+0.09114=0.45921
Explicit Method Chart
Step i | ΔFi | Δui | ui | (Fext)i | (Fint)i | R= Fint- Fext |
1 | 1.00 | 0.25 | 0.2500 | 1.00 | 1.5781 | 0.5781 |
2 | 1.00 | 0.1151 | 0.3651 | 2.00 | 2.7087 | 0.7087 |
3 | 1.00 | 0.0912 | 0.4593 | 3.00 | 3.8327 | 0.8327 |
Implcit Method :
Step 1 : u0=0;k(u0)=0+0+4=4;ΔF1=1;Δu1=(ΔF1/k(uo))=14
u1=Δu1+u0=(1/4)+0=14=0.25
(f)int = (0.25)3+9(0.25)2+4(0.25)=1.5781
R0 =FInternal−Fexternal=1.5781 - 1 =0.5781 > 0.001,
Hence using the Newton Raphson Method .
∂(u1)=−[k(u1)0]−1×R0 = −[4(8.675)]−1×0.5781 = -0.066543
Updated value of (u1)1 = (u1)0+∂(u1) = 0.25 + (-0.066543) = 0.183457
FInternal =`(0.184)3+9(0.184)2+4(0.184)
= 1.0469
FInternal−Fexternal=1.0469−1
= 0.0469 = R1>0.001
Hence , Using the Newton Raphson Iteration Method again,
k(u1)(1)= 3(u11)2+18(u11)+4
= 3(0.1834)2+18(0.1834)+4
= 7.414
∂u2=−k[(u1)(1)]−1×R1 = −0.04697.414 = -0.06325
Update value of u1 = (u1)(2)=∂u2+u(1)1 = 0.184 -0.06325 =0.1777
F(Internal)=(u(2)1)3+18(u(2)1)2+4(u(2)1)
=(0.1777)3+9(0.1777)2+4(0.1777)
= 1.000607
FInternal−Fexternal= 1.000607 - 1 = 0.000607 = R2<0.001
Hence, the iterations are no longer required and the Final value of u1=0.1777
Step 2 : u1=0.177 ; k(u1)=3(0.1777)2+18(0.1777)+4 = 7.2933
ΔF=1 ; Δu2=ΔF/k(u1)=17.2933=0.1371
u2=u1+Δu2 = 0.1777 + 0.1371 ==0.2966+(−4.41125×10−4) 0.3149
FInternal=(0.3148)3+9(0.3148)2+4(0.3148) = 2.1824
−k[(u2)0]=3(0.3149)2+18(0.3149)+4 = 9.965
u(1)2=u(0)2+δu(1)=0.3149+(−0.0183)=0.2966
FInternal=(0.2966)3+9(0.2966)2+4(0.2966)= 2.004236
F(Internal)−F(external)=2.004236−2=0.004236=R(1)>0.001
Hence, using Newton Raphson Iterations again
−k[u(1)2]=3×(0.2966)2+18(0.2966)+4=9.6027
δu(2)=K[u(1)2]−1R(1)=−0.0042369.6027=4.41125×10−4
u(2)2=u(1)2+δu(2)
=0.2966+(−4.41125×10−4)
= 0.29615
FInternal=(0.29615)3+9×(0.29615)2+4×(0.29615)=2.000002
F(Intrnal)−F(external)=2.000002−2.000=0.000002=R2<0.001
Hence, the iterations are no longer required and u2=u22=0.29615
Step 3 : u2=0.29615;k(u2)=3(0.29615)2+18(0.29615)+4=9.5938
ΔF=1;Δu3=ΔF/k(u2)=19.5938=0.1042
u3=u2+Δu3=0.29615+0.1042=0.40038
FInternal=(0.40038)3+9(0.40038)2+4(0.40038)=3.10848
FInternal−Fexternal=3.1084−3.00=0.10848=R0>0.001
Hence, Using the Newton Raphson Iteration Method
k[u(0)3]=3(0.40038)2+18(0.40038)+4=11.687
δu(1)=−k[u(0)3]−1R(0)=−0.1084811.687=9.282×10−3
u(1)3=u(0)3+δu(1)=0.40038+(−9.282×10−3)=0.3910
FInternal=(0.3910)3+9(0.3910)2+4(0.3910)=3.000832
FInternal−Fexternal=3.000832−3.000=0.00083224=R(1)<0.001
Hence, The Newton Raphson Iterations are no longer required and u3=u(1)3=0.3910
Implicit Method Chart
Step i | ΔFi | Δui | ui | (Fext)i | (fint)i | R= fint- Fext |
1 | 1.00 | 0.25 | 0.1770 | 1.00 | 1.000607000 | 0.000607000 |
2 | 1.00 | 0.1371 | 0.2962 | 2.00 | 2.000002000 | 0.000002000 |
3 | 1.00 | 0.1042 | 0.3910 | 3.00 | 3.000832000 | 0.000832000 |
Force vs Displacement Comparison between Explicit and Implicit Methods
CONCLUSION :
It can be seen from the plot that the Value for the forces found are lot more closer to the Exact value of the forces as compared to the Force values determined using the Explicit methods. Thus the Implicit method is morte accurate as compared to the Explicit method but the Imlicit method more time consuming & cumbersome as compared to the Explicit method.
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...
Bird Strike - Project - 2
OBJECTIVES : 1. To simulate the bird Strike on the given aero engine model. 2. To carry out the simulation by including the different files of the part into a Single Main file by using the keyword* INCLUDE 3.To renumber the Nodes, Elements and the Parts before running the simulation in the ranges of 100000+, 500000+ and…
10 Apr 2022 07:00 PM IST
week-11 Joint creation and Demonstration
OBJECTIVE : 1. Creating the Revolute joint between two plates. 2. Creating the Cylindrical joint between two concentric cylinders. 3. Creating the Spherical joint between two concentric spheres. 4.Creating the Translational joints between co-axial boxes. CASE SET UP : CASE 1 : CREATING THE REVOLUTE JOINT 1. Creating…
10 Apr 2022 06:52 PM IST
Week - 10 Hyperelastic Material Models
OBJECTIVE : 1. To calculate the Mooney Rivilin and Ogden material constants by fitting the curve using the given engineering stress and engineering strain data. 2.Using the constants calculated for the Mooney-Rivilin and the Ogden material, Create the Material model for the Hyperelastic material. 3. Using the Hyperelastic…
07 Apr 2022 08:10 PM IST
Week - 9 Material Modeling from Raw Data
OBJECTIVE : 1. Extracting the data from the given diagram of the true stress strain curve of the graphite iron casting. 2. Cleaning the data and making the sure that it matches the original data given in the diagram. 3. Processing the data and creating the material for the FEA analysis. 4. Using the material model for…
06 Apr 2022 11:54 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.