Last change
on this file since 3483 was
3175,
checked in by emillour, 11 months ago
|
Pluto PCM:
Add the old Pluto LMDZ for reference (required prior step to making
an LMDZ.PLUTO using the same framework as the other physics packages).
TB+EM
|
File size:
345 bytes
|
Line | |
---|
1 | c |
---|
2 | c $Header: /users/lmdz/cvsroot/LMDZ.3.3/libf/dyn3d/heavyside.F,v 1.2 2001/04/13 15:49:10 lmdz Exp $ |
---|
3 | c |
---|
4 | FUNCTION heavyside(a) |
---|
5 | |
---|
6 | c ... P. Le Van .... |
---|
7 | c |
---|
8 | IMPLICIT NONE |
---|
9 | |
---|
10 | REAL*8 heavyside , a |
---|
11 | |
---|
12 | IF ( a.LE.0. ) THEN |
---|
13 | heavyside = 0. |
---|
14 | ELSE |
---|
15 | heavyside = 1. |
---|
16 | ENDIF |
---|
17 | |
---|
18 | RETURN |
---|
19 | END |
---|
20 | |
---|
21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.