Home
last modified time | relevance | path

Searched refs:time (Results 1 – 21 of 21) sorted by relevance

/phasta/phSolver/common/
H A Dget_time.c51 struct timeval time; in get_time() local
53 ret = gettimeofday(&time, NULL); in get_time()
55 *rv = ((time.tv_sec*1000000)+(time.tv_usec)); in get_time()
65 struct timespec time; in get_time() local
66 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time); in get_time()
67 *rv = ((time.tv_sec*1000000000)+(time.tv_nsec)); in get_time()
H A Dcommon_c.h535 double time; member
H A Dcommon.h252 common /timdat/ time, CFLfld, CFLsld, Dtgl, Dtmax, alpha,
/phasta/phastaIO/
H A Dphiostats.h12 void phastaio_addWriteTime(size_t time);
13 void phastaio_addReadTime(size_t time);
14 void phastaio_addOpenTime(size_t time);
15 void phastaio_addCloseTime(size_t time);
H A DphastaIO.cc343 double time = end - start; in printPerf() local
348 MPI_Allreduce(&time, &tmin,1, MPI_DOUBLE, MPI_MIN, MPI_COMM_WORLD); in printPerf()
349 MPI_Allreduce(&time, &tmax,1, MPI_DOUBLE, MPI_MAX, MPI_COMM_WORLD); in printPerf()
350 MPI_Allreduce(&time, &ttot,1, MPI_DOUBLE, MPI_SUM, MPI_COMM_WORLD); in printPerf()
H A DvtkPhastaReader.cxx66 double time = (double)((*end-*start)/clockRate); in computeTime() local
67 opentime_total += time; in computeTime()
/phasta/AcuStat/
H A DAcuStat_input.dat13 …ed to accumulate the statistics from the ybar field and write the solution from the last time step.
15 1) solution of the last time step;
19 5) If requested (optional), vorticity field (from the last time step).
20 6) If requested (optional), dwal field (from the last time step).
21 The next lines contain the time steps series for restart files along with the associated number of
/phasta/M2N/
H A DM2N_input.dat1 120 # time step of the restart files for fields to reduce (solution, ybar, etc)
2 100 # time step of the restart files for partID and vtxID (mapping between M and N)
/phasta/converterIO/
H A DREADME.md40 - the time step number of the restart files,
47 The script's name is create_IO_O2N_input.sh. Run this script a first time without any argument to l…
48 It basically requires the time step number of the restart files, the number of parts #, and the num…
59 …at we have a #-procs_case directory that contains @ phasta files under the SyncIO format this time.
73 …ginal geombc files under the Posix format somewhere so it is useless (and time consuming) to gener…
/phasta/phSolver/cmake/
H A DGetGitRevisionDescription.cmake38 # We must run the following at "include" time, not at function call time,
/phasta/M2NFixBnd/src/
H A Dnew_interface.c457 time_t timenow = time ( &timenow); in Write_Displ()
634 time_t timenow = time ( &timenow); in Write_PhAvg()
/phasta/phSolver/AMG/
H A Damgread.txt111 only need to do a back substitution, which saves time greatly,
173 if using direct). This saves time.
188 time. and easier for compiler to vectorify.
/phasta/AcuStat/src/
H A Dnew_interface.c566 time_t timenow = time ( &timenow); in Write_Displ()
743 time_t timenow = time ( &timenow); in Write_PhAvg()
/phasta/AcuStat/include/
H A DcommonAcuStat_c.h456 double time; member
H A DcommonAcuStat.h210 common /timdat/ time, CFLfld, CFLsld, Dtgl, Dtmax, alpha,
/phasta/M2N/include/
H A DcommonM2N_c.h457 double time; member
H A DcommonM2N.h211 common /timdat/ time, CFLfld, CFLsld, Dtgl, Dtmax, alpha,
/phasta/M2NFixBnd/include/
H A DcommonM2NFixBnd_c.h456 double time; member
H A DcommonM2NFixBnd.h210 common /timdat/ time, CFLfld, CFLsld, Dtgl, Dtmax, alpha,
/phasta/M2N/src/
H A Dnew_interface.c715 time_t timenow = time ( &timenow); in Write_Displ()
892 time_t timenow = time ( &timenow); in Write_PhAvg()
/phasta/phSolver/
H A DCHANGES73 introduced ybar: time averaged fields:
316 3) Ability to set sponge on one equation at a time
540 … of time forming the LHS, if you have a loose tolerance that is satified quickly you might as well…