Unit 2 CFD
Unit 2 CFD
1. Intake conditions.
2. Symmetry conditions.
3. Physical boundary conditions.
4. Cyclic conditions.
5. Pressure conditions.
6. Exit conditions.
Finite element method is a numerical technique for finding approximate solutions to boundary
value problems for partial differential equations.Capable of handling extremely complicated, time-
dependent geometries and two-phase flow.The computational domain is divided up into smaller
domains (finite elements) and the solution in each element is constructed from the basis
functions. The actual equations that are solved are typically obtained by restating the
conservation equation in weak form: the field variables are written in terms of the basis functions,
the equation is multiplied by appropriate test functions, and then integrated over an element.
2 (C) Explicit methods calculate the state of a system at a later time from the state of the system
at the current time, while implicit methods find a solution by solving an equation involving both
the current state of the system and the later one.
In the explicit solution, parameters are calculated based on previous levels *(e.g.time
level):
x(n+1) = x(n)+ z(n)
In the implicit scheme, parameters are dependent on each other at the same time
level:
x(n+1) = x(n)+z(n+1)
Implicit methods are more complicated to use but usually much more stable. And so
larger time steps can be implemented.
Good thing about Implicit Schemes is that they don’t have to satisfy any stability conditions.
They are unconditionally stable. But they are computationally expensive as you need more
storage space for [K] matrix and need sophisticated algorithms to solve.
This is an explicit scheme called FTCS (Forward differencing in Time and Central differencing
in Space at time level n) for solving a 1-D heat equation. Explicit Schemes have to satisfy
stability conditions in order for solution to converge