Ini.f90
From CFD-Wiki
(Difference between revisions)
(One intermediate revision not shown) | |||
Line 1: | Line 1: | ||
+ | <pre> | ||
+ | |||
+ | !Sample program for solving Smith-Hutton Test using different schemes | ||
+ | !of covective terms approximation - Intial data modul | ||
+ | !Copyright (C) 2005 Michail Kirichkov | ||
+ | |||
+ | !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. | ||
+ | |||
+ | !*************************************************************************** | ||
Subroutine Ini | Subroutine Ini | ||
Line 5: | Line 26: | ||
U(nx,ny) = 0. | U(nx,ny) = 0. | ||
- | |||
V(nx,ny) = 0. | V(nx,ny) = 0. | ||
- | |||
PP(nx,ny) = 0. | PP(nx,ny) = 0. | ||
- | |||
F(nx,ny,10) = 0. | F(nx,ny,10) = 0. | ||
Xp(nx,ny) = 0. | Xp(nx,ny) = 0. | ||
- | |||
Yp(nx,ny) = 0. | Yp(nx,ny) = 0. | ||
- | |||
X(nx,ny) = 0. | X(nx,ny) = 0. | ||
- | |||
Y(nx,ny) = 0. | Y(nx,ny) = 0. | ||
Gam(nx,ny) = 0. | Gam(nx,ny) = 0. | ||
- | |||
Ro(nx,ny) = 0. | Ro(nx,ny) = 0. | ||
X_xi(nx,ny) = 0. | X_xi(nx,ny) = 0. | ||
- | |||
Y_xi(nx,ny) = 0. | Y_xi(nx,ny) = 0. | ||
- | |||
X_et(nx,ny) = 0. | X_et(nx,ny) = 0. | ||
- | |||
Y_et(nx,ny) = 0. | Y_et(nx,ny) = 0. | ||
- | |||
Del_X_xi(nx,ny) = 0. | Del_X_xi(nx,ny) = 0. | ||
- | |||
Del_Y_xi(nx,ny) = 0. | Del_Y_xi(nx,ny) = 0. | ||
- | |||
Del_X_et(nx,ny) = 0. | Del_X_et(nx,ny) = 0. | ||
- | |||
Del_Y_et(nx,ny) = 0. | Del_Y_et(nx,ny) = 0. | ||
Line 45: | Line 52: | ||
As(nx,ny) = 0. | As(nx,ny) = 0. | ||
- | |||
An(nx,ny) = 0. | An(nx,ny) = 0. | ||
- | |||
Aw(nx,ny) = 0. | Aw(nx,ny) = 0. | ||
- | |||
Ae(nx,ny) = 0. | Ae(nx,ny) = 0. | ||
Sp(nx,ny) = 0. | Sp(nx,ny) = 0. | ||
- | |||
- | |||
Return | Return | ||
+ | End | ||
- | + | </pre> |
Latest revision as of 03:55, 21 September 2005
!Sample program for solving Smith-Hutton Test using different schemes !of covective terms approximation - Intial data modul !Copyright (C) 2005 Michail Kirichkov !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. !*************************************************************************** Subroutine Ini include 'icomm_1.f90' U(nx,ny) = 0. V(nx,ny) = 0. PP(nx,ny) = 0. F(nx,ny,10) = 0. Xp(nx,ny) = 0. Yp(nx,ny) = 0. X(nx,ny) = 0. Y(nx,ny) = 0. Gam(nx,ny) = 0. Ro(nx,ny) = 0. X_xi(nx,ny) = 0. Y_xi(nx,ny) = 0. X_et(nx,ny) = 0. Y_et(nx,ny) = 0. Del_X_xi(nx,ny) = 0. Del_Y_xi(nx,ny) = 0. Del_X_et(nx,ny) = 0. Del_Y_et(nx,ny) = 0. Ap(nx,ny) = 0. As(nx,ny) = 0. An(nx,ny) = 0. Aw(nx,ny) = 0. Ae(nx,ny) = 0. Sp(nx,ny) = 0. Return End