CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Wiki > HLPA.f90

HLPA.f90

From CFD-Wiki

(Difference between revisions)
Jump to: navigation, search
 
(One intermediate revision not shown)
Line 1: Line 1:
 +
<pre>
 +
 +
!Sample program for solving Smith-Hutton Test using different schemes
 +
!of covective terms approximation -  HLPA scheme implementation 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.
 +
 +
!**********************************************************************
! HLPA scheme
! HLPA scheme
Line 49: Line 70:
End
End
 +
 +
</pre>

Latest revision as of 15:31, 21 September 2005


!Sample program for solving Smith-Hutton Test using different schemes 
!of covective terms approximation -  HLPA scheme implementation 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.

!**********************************************************************
! HLPA scheme

Subroutine HLPA(Uw,Fww,Fw,Fp,Fe,Delta_f)


If (Uw.GE.0.) then

	if ( ABS( Fp - 2.* Fw + Fww ).LT.ABS( Fp - Fww ) ) then

		Alpha_pl = 1.
												 else

		Alpha_pl = 0.												 	

	End If

	If ( (Fp - Fww).NE.0. ) then 
	
		Delta_f = Alpha_pl * (Fp - Fw)* (Fw - Fww) / (Fp - Fww)
	
	End If

End If

!-------------------------------------------------------------------------

If (Uw.LT.0.) then

	if ( ABS( Fw - 2.* Fp + Fe ).LT.ABS( Fw - Fe ) ) then

		Alpha_mn = 1.
												 else

		Alpha_mn = 0.												 	

	End If

	If ( (Fw - Fe).NE.0. ) then 	
	
		Delta_f = Alpha_mn * (Fw - Fp)* (Fp - Fe) / (Fw - Fe)

	End If

End If

100 continue 

Return

End

My wiki