CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Wiki > Bound 1.f90 - Set boundary conditions

Bound 1.f90 - Set boundary conditions

From CFD-Wiki

(Difference between revisions)
Jump to: navigation, search
 
(One intermediate revision not shown)
Line 1: Line 1:
<pre>
<pre>
-
Boundary condition modul
+
!Sample program for solving Smith-Hutton Test using different schemes
-
Copyright (C) 2005  Michail Kirichkov
+
!of covective terms approximation - Boundary condition modul
 +
!Copyright (C) 2005  Michail Kirichkov
-
This program is free software; you can redistribute it and/or
+
!This program is free software; you can redistribute it and/or
-
modify it under the terms of the GNU General Public License
+
!modify it under the terms of the GNU General Public License
-
as published by the Free Software Foundation; either version 2
+
!as published by the Free Software Foundation; either version 2
-
of the License, or (at your option) any later version.
+
!of the License, or (at your option) any later version.
-
This program is distributed in the hope that it will be useful,
+
!This program is distributed in the hope that it will be useful,
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
+
!but WITHOUT ANY WARRANTY; without even the implied warranty of
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+
!MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-
GNU General Public License for more details.
+
!GNU General Public License for more details.
-
You should have received a copy of the GNU General Public License
+
!You should have received a copy of the GNU General Public License
-
along with this program; if not, write to the Free Software
+
!along with this program; if not, write to the Free Software
-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+
!Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 +
!***********************************************************************
Subroutine Bound_condition
Subroutine Bound_condition

Latest revision as of 14:44, 21 September 2005


!Sample program for solving Smith-Hutton Test using different schemes 
!of covective terms approximation - Boundary condition 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 Bound_condition

include 'icomm_1.f90'  

open(54, file='ioutlet_prof.txt')

DO 5 I=1,NXmaxP 
  
 	If ( Xp(i,1)>0.) then  
 			
 			  F(i,1,5) = F(i,2,5)
 
 				write(54,*) Xp(i,1),F(i,1,5)
 	end if

  5 continue  

close(54)


Return

End

My wiki