/[lmdze]/trunk/dyn3d/heavyside.f
ViewVC logotype

Contents of /trunk/dyn3d/heavyside.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 82 - (show annotations)
Wed Mar 5 14:57:53 2014 UTC (10 years, 2 months ago) by guez
File size: 313 byte(s)
Changed all ".f90" suffixes to ".f".
1
2 ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/heavyside.F,v 1.1.1.1 2004/05/19
3 ! 12:53:06 lmdzadmin Exp $
4
5
6
7 FUNCTION heavyside(a)
8
9 ! ... P. Le Van ....
10
11 IMPLICIT NONE
12
13 DOUBLE PRECISION heavyside, a
14
15 IF (a<=0.) THEN
16 heavyside = 0.
17 ELSE
18 heavyside = 1.
19 END IF
20
21 RETURN
22 END FUNCTION heavyside
23
24

  ViewVC Help
Powered by ViewVC 1.1.21