Home
last modified time | relevance | path

Searched refs:second (Results 1 – 16 of 16) sorted by relevance

/honee/src/
H A Dcloptions.c234 .second = 1.0, in ProcessCommandLineOptions()
240 …alar("-units_second", "1 second in scaled time units", NULL, units->second, &units->second, NULL)); in ProcessCommandLineOptions()
244 units->Pascal = units->kilogram / (units->meter * PetscSqr(units->second)); in ProcessCommandLineOptions()
245 units->Joule = units->kilogram * PetscSqr(units->meter) / PetscSqr(units->second); in ProcessCommandLineOptions()
247 units->m_per_squared_s = units->meter / PetscSqr(units->second); in ProcessCommandLineOptions()
248 units->W_per_m_K = units->Joule / (units->second * units->meter * units->Kelvin); in ProcessCommandLineOptions()
H A Dsetupts.c247 time /= honee->units->second; // Dimensionalize time back in WriteOutput()
435 PetscCall(TSSetMaxTime(*ts, 500. * honee->units->second)); in TSSolve_NS()
438 PetscCall(TSSetTimeStep(*ts, 1.e-2 * honee->units->second)); in TSSolve_NS()
440 …PetscCall(TSAdaptSetStepLimits(adapt, 1.e-12 * honee->units->second, 1.e2 * honee->units->second)); in TSSolve_NS()
458 PetscCall(TSSetTime(*ts, app_ctx->cont_time * honee->units->second)); in TSSolve_NS()
H A Dsetupdm.c68 PetscCall(DMPlexSetScale(*dm, PETSC_UNIT_TIME, honee->units->second)); in CreateDM()
/honee/src/spanstats/
H A Dcflpe.c219 CeedScalar second = honee->units->second; in TSMonitor_SpanwiseStatisticsCflPe() local
228 …filename, spanstats->initial_solution_time / second, solution_time / second, spanstats->initial_so… in TSMonitor_SpanwiseStatisticsCflPe()
232 …spanstats->prefix, spanstats->initial_solution_time / second, solution_time / second, spanstats->i… in TSMonitor_SpanwiseStatisticsCflPe()
H A Dturbulence.c238 CeedScalar second = honee->units->second; in TSMonitor_SpanwiseStatisticsTurbulence() local
248 … filename, spanstats->initial_solution_time / second, solution_time / second, in TSMonitor_SpanwiseStatisticsTurbulence()
253 …spanstats->prefix, spanstats->initial_solution_time / second, solution_time / second, spanstats->i… in TSMonitor_SpanwiseStatisticsTurbulence()
/honee/problems/
H A Ddensitycurrent.c73 N *= (1. / units->second); in NS_DENSITY_CURRENT()
H A Dnewtonian.c479 newtonian_ig_ctx->gas.mu *= units->Pascal * units->second; in NS_NEWTONIAN_IG()
483 for (PetscInt i = 0; i < 3; i++) reference.velocity[i] *= units->meter / units->second; in NS_NEWTONIAN_IG()
498 newtonian_ig_ctx->idl_amplitude = 1 / (idl_decay_time * units->second); in NS_NEWTONIAN_IG()
735 const CeedScalar kg = units->kilogram, m = units->meter, sec = units->second, K = units->Kelvin; in UnitTests_Newtonian()
H A Deulervortex.c130 mean_velocity[i] *= (units->meter / units->second); in NS_EULER_VORTEX()
H A Dchannel.c70 umax *= units->meter / units->second; in NS_CHANNEL()
H A Dbc_freestream.c126 …for (int i = 0; i < 3; i++) Y_inf.velocity[i] = reference->velocity[i] * units->second / units->me… in FreestreamBCSetup()
138 for (int i = 0; i < 3; i++) Y_inf.velocity[i] *= units->meter / units->second; in FreestreamBCSetup()
H A Dblasius.c180 U_inf *= units->meter / units->second; in NS_BLASIUS()
H A Dadvection.c499 wind[i] *= (units->meter / units->second); in NS_ADVECTION()
/honee/doc/
H A Druntime_options.md234 - 1 second in scaled time units
464 - Stokes hypothesis second viscosity coefficient
H A Dauxiliary.md132 To get second-order statistics from these terms, simply use the identity:
241 It is currently assumed that the second component of the filter width tensor is in the wall-normal …
256 … normal kernel to our differential kernel, we attempt to have them match second order moments with…
H A Dtheory.md164 …ta t$, so small time steps result in the Jacobian being dominated by the second term, which is a s…
228 …X} = \nabla_{\bm x}\bm X \cdot \bm u$, with units of reference length (non-dimensional) per second.
342 This term requires a second derivative to evaluate; first to evaluate $\bm \sigma$ and $\nabla T$ f…
343 For linear elements, the flux is constant within each element so the second derivative is zero, lea…
/honee/include/
H A Dnavierstokes.h186 PetscScalar second; member