All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM: To solve the equation F(u)=u3+9u2+4u using explicit & implicit methods. EXPLANATION: Explicit: An implicit solver solves the unknowns in the numerical equations by the inversion of the matrices that make up the model. Larger models have larger matrices. This is because of the large number…
Jayesh Pradhyumna
updated on 14 Sep 2021
AIM:
To solve the equation F(u)=u3+9u2+4u using explicit & implicit methods.
EXPLANATION:
Explicit:
An implicit solver solves the unknowns in the numerical equations by the inversion of the matrices that make up the model. Larger models have larger matrices. This is because of the large number of FE elements. Thus the analysis will take more time. When non-linearities are present in the model, the solution for the current time step is based on the solution from the previous time step. An implicit solver will produce solutions that are stable and allow for larger time increments.
Implicit:
An explicit analysis aims to solve for acceleration. The accelerations are solved for the nth time step, and then the velocity is solved for the n+1/2 step, and displacement at the n+1 step. The solutions are not always stable and much smaller time steps are required. The time step in an explicit analysis must be less than the time taken by a sound wave to travel across an element and is hence dependent on the mesh size and the material properties. This is known as the Courant time step.
f(u)=u3+9u2+4u
k(u)=dfdf=3u2+18u+4
Explicit analysis:
Step 1
u0=0
k(u0)=0+0+4=4
ΔF=1
Δu1=ΔFk(u0)=14=0.25
u1=u0+Δu1=0+0.25=0.25
f(u)=u3+9u2+4u=(0.25)3+(9⋅0.0625)+(4⋅0.25)
f(u)=1.5781
Step 2
k(u1)=0.1875+4.5+4=8.6875
ΔF=1
Δu2=ΔFk(u1)=18.6875=0.1151
u2=u1+Δu1=0.25+0.1151=0.3651
f(u)=u3+9u2+4u=(0.3651)3+(9⋅(0.3651)2)+(4⋅0.3651)
f(u)=2.7078
Step 3
k(u2)=0.3998+6.5718+4=10.9716
ΔF=1
Δu3=ΔFk(u2)=110.9716=0.0911
u3=u2+Δu3=0.3651+0.0.0911=0.4562
f(u)=u3+9u2+4u=(0.4562)3+(9⋅(0.4562)2)+(4⋅0.4562)
f(u)=3.7827
Step i | ΔFi | Δui | ui | (Fext)i | (f)i | R=(f)i−(Fext)i |
1 | 1 | 0.25 | 0.25 | 1 | 1.5781 | 0.5781 |
2 | 1 | 0.1511 | 0.3651 | 2 | 2.7078 | 0.7078 |
3 | 1 | 0.0911 | 0.4562 | 3 | 3.7927 | 0.7927 |
Implicit analysis:
Step 1
u0=0
k(u0)=0+0+4=4
ΔF=1
Δu1=ΔFk(u0)=14=0.25
f(u)=u3+9u2+4u=(0.1834)3+(9⋅0.1834)+(4⋅0.1834)
f(u)=1.5781
R1=f−F=1.5781−1=0.5781
Since R1> 0.01 Newton-Raphson iterations are done
x1=x0−f(x0)f1(x0)
Δu1(1)=R1(1)k(1)u11=−0.066549
u1(2)=u1(1)+Δu1(1)=0.25−0.06654=0.1834
F1(2)=1.04249
R1(2)=0.04249>0.01
So Newton-Raphson method is applied
Δu1(2)=R1(2)k(u21)=0.07228
u1(3)=u1(2)+9(0.1772)+4(0.177)=1.00075
R1(3)=0.000753>0.01
So Newton-Raphson method is applied
Thus,
u1=0.1772
f1=1.0007
R1=0.000753
Step 2
u1=0.1772
k(u)=3(0.17722)+18(0.1772)+4=7.29
ΔF =1
Δu2=ΔFk(u)=0.137
u2=u1+Δu2=0.3148
f2=(0.1773)+9(0.1772)+4(0.177)=2.182
R2=f1−F1=0.1822
As R2 > 0.01 Newton-Raphson method is applied
Δu2(1)=R2(1)k(u12)=−0.018294
u2(2)=u2(1)+Δu2(1)=0.3148−0.0182=0.2965
f2(2)=2.0037
R2(2)=0.00327<0.01
So Newton-Rraphson method is not needed.
Thus,
u2=0.2965
f2=2.0032
R2=0.003276
Step 3
u2=0.2965
k(u)=3(0.29652)+18(0.2965)+4=9.60073
ΔF=1
Δu3=ΔFk(u)=0.1046
u3=u2+Δu3=0.4006
F3=(0.2963)+9(0.29652)+4(0.2965)
R3=f1−F1=0.111>0.01
So Newton-Raphson method is applied
Δu3(1)=R3(1)k(u13)=−0.009493
u3(2)=u3(1)+Δu3(1)=0.3911
F3(2)=3.0008
R3(2)=0.00855<0.01
Thus,
u3=0.3911
f3=3.00855
R3=0.00855
Step i | ΔFi | Δui | ui | (Fext)i | (f)i | R=(f)i−(Fext)i |
1 | 1 | 0.07228 | 0.1772 | 1 | 1.0007 | 0.0007 |
2 | 1 | -0.018294 | 0.2965 | 2 | 2.0032 | 0.0032 |
3 | 1 | -0.009493 | 0.3911 | 3 | 3.00855 | 0.00855 |
Comparison of Explicit & Implicit methods:
CONCLUSION:
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 - 2 - Explicit and Implicit Analysis
AIM: To solve the equation F(u)=u3+9u2+4u using explicit & implicit methods. EXPLANATION: Explicit: An implicit solver solves the unknowns in the numerical equations by the inversion of the matrices that make up the model. Larger models have larger matrices. This is because of the large number…
14 Sep 2021 12:40 PM IST
Week - 1 - Consistency of Units
AIM: To write the given measurements in the above different system of units and mention the conversion factors. MASS 1kgLENGTH 1mTIME 1sFORCE 1NSTRESS 1PaENERGY 1NmDENSITY 1Kg/m3YOUNG'S Modulus 210GPaVelocity 56.33KMPHGRAVITY 9.8m/s2 CONVERSION TO DIFFERENT UNITS: SI unit / Measured quanitites…
09 Aug 2021 08:59 AM IST
Project 1 Mechanical design of battery pack
AIM: To build a battery pack of capacity 18 kWh with the cell ANR26650M1-B. Also prepare a detailed battery pack drawing along with its enclosure. OBJECTIVE: The objective of the project is to know how a battery pack for an EV is designed and implemented, the challenges faced and tackling the challenges. …
26 Jul 2021 10:11 AM IST
Week 7 State of charge estimation
AIM: To Simulate 3 cases from harness dashboard and compare the result plots. To explain how BMS implements Coulomb counting to estimate SOC. OBJECTIVE: The objective of the assignment is to learn what coulomb counting is, how that is implemented in BMS and how it helps to estimate SOC. MODEL SETUP: …
12 Jul 2021 03:59 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.