diff --git a/define_bc.f90 b/define_bc.f90 index 7f42da861d0b11e4e5b8b33ffd9c15dc72c09ba4..23e6de60b4209d63dd62ba6eaadc434ff0396f6e 100644 --- a/define_bc.f90 +++ b/define_bc.f90 @@ -48,6 +48,7 @@ type (void) vo integer i,iproc,nproc,ierr double precision eps,lsf0,pi,l,h,x0,x1,x2,phi integer ie,ij,j,jp +character fname*256 !------------------------------------------------------------------------------| !------------------------------------------------------------------------------| @@ -69,7 +70,10 @@ phi=phi/180.d0*pi !x1=x0-l*(1.d0-cos(phi))/sin(phi) !x2=x0+l/tan(phi) -select case(trim(params%infile)) +!select case(trim(params%infile)) +j = index(params%infile, '/', .true.) +fname = params%infile(j+1:len(params%infile)) +select case(trim(fname)) case('input.txt','input.small.txt') diff --git a/douar.run.mahone b/douar.run.mahone index 9c0e1b93508ba81134ed087d1c4c864c748a43ea..192101e2e462ac0a4fc17e7e372233e714d729ad 100755 --- a/douar.run.mahone +++ b/douar.run.mahone @@ -21,16 +21,9 @@ echo "Will use ${PROCS} processes." export MALLOC_TRIM_THRESHOLD_=-1 export MALLOC_MMAP_MAX_=0 # WSMP needs to know where its license file is. -# But this doesn't seem to work yet....) -# It looks like the license must be where we start the job. -# When using the licemse from AIX, we get: -# ERROR**: This License is registered for an AIX system # export WSMPLICPATH=/home/dguptill/software/wsmp/ -# export WSMPLICPATH=/home/pfullsac/PROGRAMS2008/v0.1/run_test_all/pbwithlic/wsmp.lic -# The PGPLOT routines need this. -export PGPLOT_DIR=/home/dguptill/software/pgplot-5.2.2 -export LD_LIBRARY_PATH=${PGPLOT_DIR}:${LD_LIBRARY_PATH} -echo "LD_LIBRARY_PATH is ${LD_LIBRARY_PATH}" +# But this doesn't seem to work....) +# It looks like the license must be where we start the job. # douar needs some directories.. make_dir DEBUG make_dir DEBUG/mpilogs @@ -40,13 +33,7 @@ make_dir OUT BIN=/home/dguptill/software/douar/douar # Here is the run command -# COM="mpirun -np ${PROCS} --host localhost,localhost,localhost,localhost --byslot ${BIN}" -# for the head node and MPICH -# trouble: -#p0_15929: p4_error: Child process exited while making connection to remote process on cl003: 0 -#p0_15929: (6.230469) net_send: could not write to fd=5, errno = 32 -# -# COM="/usr/local/mpich.pgi.64/bin/mpirun -machinefile /home/dguptill/douar/machinefile -np ${PROCS} ${BIN}" +# MPICH wants the input file on the command line. COM="/usr/local/mpich.pgi.64/bin/mpirun -arch LINUX -machinefile /home/dguptill/douar/machinefile -np ${PROCS} ${BIN} /home/dguptill/douar/input.txt" echo "COM is <${COM}>" diff --git a/scanfile.f90 b/scanfile.f90 index b3a4d0d070f838648a01efcc4c1e9c51d50b124b..77bf477a03fce79f72d8568c83c3834548104b35 100644 --- a/scanfile.f90 +++ b/scanfile.f90 @@ -50,9 +50,8 @@ call mpi_comm_size (mpi_comm_world,nproc,ierr) call mpi_comm_rank (mpi_comm_world,iproc,ierr) ires=0 - open (7,file=fnme(1:len_trim(fnme)),status='old',iostat=ios) -if (ios/=0) write(*,*) 'pb opening input.txt in iscanfile' +if (ios/=0) write(*,*) 'pb opening <',fname,'> in iscanfile' 111 continue @@ -118,7 +117,7 @@ call mpi_comm_rank (mpi_comm_world,iproc,ierr) ires=0 open (7,file=fnme(1:len_trim(fnme)),status='old',iostat=ios) -if (ios/=0) write(*,*) 'pb opening input.txt in iscanfile' +if (ios/=0) write(*,*) 'pb opening <',fnme(1:len_trim(fnme)),'> in dscanfile' 111 continue @@ -183,7 +182,7 @@ call mpi_comm_rank (mpi_comm_world,iproc,ierr) ires=0 open (7,file=fnme(1:len_trim(fnme)),status='old',iostat=ios) -if (ios/=0) write(*,*) 'pb opening input.txt in iscanfile' +if (ios/=0) write(*,*) 'pb opening <',fnme(1:len_trim(fnme)),'> in cscanfile' 111 continue