The TELEMAC-MASCARET system
trunk
sources
artemis
user_condih.f
Go to the documentation of this file.
1
! **********************
2
SUBROUTINE
user_condih
3
! **********************
4
!
5
!
6
!***********************************************************************
7
! ARTEMIS
8
!***********************************************************************
9
!
10
!brief USER INITIALISES THE PHYSICAL PARAMETERS.
11
!
12
!history J-M HERVOUET (LNH)
13
!+
14
!+
15
!
16
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18
!
19
USE
bief
20
USE
declarations_telemac
21
USE
declarations_artemis
22
!
23
USE
declarations_special
24
IMPLICIT NONE
25
!
26
!+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
27
!
28
!
29
!-----------------------------------------------------------------------
30
!
31
!=====================================
32
! === EXAMPLE OF X,Y DEPENDENT CURRENT
33
!=====================================
34
! IF(COURANT) THEN
35
!
36
! AMPLC=1.D0
37
! DO I=1,NPOIN
38
! UC%R(I)=0.D0
39
! VC%R(I)=0.D0
40
! IF(X(I).GE.5.D0.AND.X(I).LT.13.D0)THEN
41
! UC%R(I)=AMPLC*((X(I)-5.D0)/8.D0)
42
! ELSEIF(X(I).GE.13.D0)THEN
43
! UC%R(I)=AMPLC
44
! ENDIF
45
! ENDDO
46
!
47
! ENDIF
48
!
49
!-----------------------------------------------------------------------
50
!
51
RETURN
52
END SUBROUTINE
declarations_special
Definition:
declarations_special.F:3
declarations_telemac
Definition:
declarations_telemac.f:3
user_condih
subroutine user_condih
Definition:
user_condih.f:4
declarations_artemis
Definition:
declarations_artemis.f:3
bief
Definition:
bief.f:3