First of all, as indicates on the forum rules, please use English on this forum. It allows the answers of the most part of users and this could help other users later.
About this test case.
The line with write is just place here to allow the user to check the program run and pass in this modified subroutine. This is not necessary for the run.
The DO line is a loop on the boundary nodes. to assign different values (H, TETA...) to all boundary nodes.
Regards
Christophe
The administrator has disabled public write access.
Re:Frontieres solides et liquides
14 years 4 months ago #1193
jmhervouet
Hello,
DO 10 I=1,1029
...
10 CONTINUE
is an old way to write loops in Fortran, it is equivalent to:
DO I=1,1029
...
ENDDO
write(*,*) 'je suis dans bord1'
is not important, it is just to check that the present subroutine is called, I would prefer:
write(LU,*) 'je suis dans bord1'
because in parallel only the messages from processor 0 are kept.
Regards,
Jean-Michel Hervouet
The administrator has disabled public write access.
The registration and abstract submission for the 2025 TELEMAC User Conference is now live! Early Bird registration is £200 (about 237 Euro at time of writing). Abstract is 600 words. Deadline is EXTE [ ... ]