CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

How to use FVM and FDM to solve Energy equation?

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 2, 2016, 03:18
Post How to use FVM and FDM to solve Energy equation?
  #1
New Member
 
danny
Join Date: Jul 2016
Posts: 2
Rep Power: 0
dannygpx is on a distinguished road
The case is flow into the two parallel plates (Top and Bottom).
The plate temperature is 500K (Fixed wall temperature).
Flow into temperature is 300K (Ambient temperature is 300K).

Assume:
1. Steady
2. Incompressible flow
3. Uniform flow
4. No heat source

\rhou\frac{\partial}{\partial}\frac{T}{x} = \frac{k}{c} ( \frac{\partial^2}{\partial^2}\frac{T}{x} + \frac{\partial^2}{\partial^2}\frac{T}{y} )

\rho = 1.225 kg / m^3

u = 2 m / s ( x component velocity )

v = 0 m / s ( y component velocity )

c = 1006.43 J / kg * K
dannygpx is offline   Reply With Quote

Old   August 3, 2016, 18:25
Default
  #2
Senior Member
 
Lane Carasik
Join Date: Aug 2014
Posts: 692
Rep Power: 14
lcarasik is on a distinguished road
Quote:
Originally Posted by dannygpx View Post
The case is flow into the two parallel plates (Top and Bottom).
The plate temperature is 500K (Fixed wall temperature).
Flow into temperature is 300K (Ambient temperature is 300K).

Assume:
1. Steady
2. Incompressible flow
3. Uniform flow
4. No heat source

\rhou\frac{\partial}{\partial}\frac{T}{x} = \frac{k}{c} ( \frac{\partial^2}{\partial^2}\frac{T}{x} + \frac{\partial^2}{\partial^2}\frac{T}{y} )

\rho = 1.225 kg / m^3

u = 2 m / s ( x component velocity )

v = 0 m / s ( y component velocity )

c = 1006.43 J / kg * K
What have you attempted so far? All you have shown what looks to be is a problem statement.
lcarasik is offline   Reply With Quote

Old   August 4, 2016, 02:10
Default
  #3
New Member
 
danny
Join Date: Jul 2016
Posts: 2
Rep Power: 0
dannygpx is on a distinguished road
Quote:
Originally Posted by lcarasik View Post
What have you attempted so far? All you have shown what looks to be is a problem statement.
I was used FVM to calculate.

Assume:
length = 0.001 m
width = 0.001 m
u = 2 m / s
\rho = 1.225 kg / m^3
k = 0.0242 W / m*K
\partialx = \partialy = 0.001/2 = 0.0005 m
Top and bottom are 300K.
Flow into temperature is 100K (Ambient temperature is 100K).

Temperature distribution:
300 300 300 300
100 86.7327 82.346 86.8175
100 90.4783 89.4623 96.7346
300 300 300 300

The temperature distribution is use MATLAB to solve.
Code:
u = 2; dx = 0.005; a = 0.0242/(1.225*1006.43);
A = [2*u*dx-6*a a-u*dx 0 a 0 0;a-u*dx 2*u*dx-5*a a-u*dx 0 a 0;0 a-u*dx 2*u*dx-6*a 0 0 a;a 0 0 2*u*dx-6*a a-u*dx 0;0 a 0 a-u*dx 2*u*dx-5*a a-u*dx;0 0 0 0 2*a-u*dx 2*u*dx-6*a];
B = [100*u*dx-800*a;-600*a;100*u*dx-200*a;100*u*dx-800*a;-600*a;100*u*dx-800*a];
C = A\B

C =

90.4783
89.4623
96.7346
86.7327
82.3460
86.8175
dannygpx is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
FDM vs FVM vs FEM in CFD analysis ck5285 FLOW-3D 1 September 1, 2009 10:51
How FVM will solve shock problem? michael Main CFD Forum 4 June 13, 2007 09:07
Are the quations solved in FDM or FVM ? anon Main CFD Forum 0 December 12, 2005 22:29
comments on FDM, FEM, FVM, SM, SEM, DSEM, BEM kenn Main CFD Forum 2 July 18, 2004 18:28
FVM and FDM Zhu Main CFD Forum 2 April 16, 2002 07:24


All times are GMT -4. The time now is 06:08.