#include "implicit_f.inc"
#include "vect01_c.inc"
#include "param_c.inc"
#include "remesh_c.inc"
Go to the source code of this file.
|
| subroutine | c1buf3 (geo, thk, off, thke, kshtree, shtree) |
◆ c1buf3()
| subroutine c1buf3 |
( |
| geo, |
|
|
| thk, |
|
|
| off, |
|
|
| thke, |
|
|
integer | kshtree, |
|
|
integer, dimension(kshtree,*) | shtree ) |
Definition at line 31 of file c1buf3.F.
32
33
34
35#include "implicit_f.inc"
36
37
38
39#include "vect01_c.inc"
40#include "param_c.inc"
41#include "remesh_c.inc"
42
43
44
45 INTEGER KSHTREE, SHTREE(KSHTREE,*)
47 . geo(npropg,*), thk(*), off(*),thke(*)
48
49
50
51 INTEGER I,N
52
53 IF(nadmesh==0)THEN
54 DO i=lft,llt
55 thk(i)=thke(i)
56 off(i)=one
57 END DO
58 ELSE
59 DO i=lft,llt
60 thk(i)=thke(i)
61 n=nft+i
62 IF(shtree(3,n)>=0)THEN
63 off(i)=one
64 ELSE
65 off(i)=-one
66 END IF
67 END DO
68 END IF
69
70 RETURN