CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Wiki > Sample code for solving Lid-Driven cavity test (Re=1000) - For...

Sample code for solving Lid-Driven cavity test (Re=1000) - Fortran 90

From CFD-Wiki

(Difference between revisions)
Jump to: navigation, search
(New page: ''Dear friends'' ''It's just a scrap. Later I'll correct it, although it's a complete working code -- Michail'' Sample program for solving Smith-Hutton Test using different schemes of co...)
Line 4: Line 4:
Sample program for solving Smith-Hutton Test using different schemes of covective terms approximation
Sample program for solving Smith-Hutton Test using different schemes of covective terms approximation
-
'''Copyright (C) 2005 Michail Kirichkov ,Lithuania, Marijampole'''
+
'''Copyright (C) 2010 Michail Kirickov ,Lithuania, Marijampole'''
This program is free software; you can redistribute it and/or
This program is free software; you can redistribute it and/or

Revision as of 17:01, 2 May 2010

Dear friends

It's just a scrap. Later I'll correct it, although it's a complete working code -- Michail

Sample program for solving Smith-Hutton Test using different schemes of covective terms approximation Copyright (C) 2010 Michail Kirickov ,Lithuania, Marijampole

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.


Short description

In this program general transport equation for scalar transport is solved. Because it was primarily developing program for learning, there was implemented an output for all variables in the txt format as well as for TECPLOT format. Structured orthogonal uniform grid is used (now). All variables are saved in array F(1:nx,1:ny,10) which mean that 2D array for 10 variables.

Variables F(:,:,1) and F(:,:,2) represented U and V velocity components, and F(:,:,4)represented pressure.

Arrays Xp and Yp represents the coordinates of the CV centres, and X and Y - coordinates of grids nodes

My wiki