Changes between Initial Version and Version 1 of Ticket #13
- Timestamp:
- 05/10/07 12:53:05 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13 – Description
initial v1 1 ''copy paste from ROMS-3.0 version 391 copy paste from ROMS-3.0 version 39 2 2 3 ----------------------------------------------- 3 ---- 4 5 {{{ 4 6 # ifdef DISTRIBUTE 5 7 Lwrite=Master … … 36 38 & /,11x,'mpirun -np 4 masterM < coupling.in',/) 37 39 30 CONTINUE 40 }}} 38 41 39 --------------------------------------------------------- 42 ---- 43 40 44 first: I believe that in 45 46 {{{ 41 47 WRITE(stdout,*) 'MyRank = ', MyRank, Iname 42 it should be 'Cname' instead of 'Iname'; 43 second: this version doesn't work for me. Instead it works adding ... 48 }}} 49 50 it should be '''Cname''' instead of '''Iname'''. 51 52 second: this version doesn't work for me. Instead it works if I add: 53 54 {{{ 44 55 DO ng=1,Ngrids 45 56 CALL mp_bcasts (ng, model, Cname, 80) 46 END DO 57 END DO 58 }}} 47 59 right before the OPEN command. 48 60 49 61 Is that correct? 50 51 Jacopo