Home
last modified time | relevance | path

Searched refs:log (Results 1 – 8 of 8) sorted by relevance

/honee/tests/junit-xml/junit_xml/
H A D__init__.py93 log=None, argument
111 self.log = log
147 if self.log:
148 test_suite_attributes["log"] = decode(self.log, encoding)
192 if case.log:
193 test_case_attributes["log"] = decode(case.log, encoding)
380 log=None, argument
393 self.log = log
/honee/src/
H A Dhonee-meshtransform.c92 PetscReal logdy = (log(domain_max[1]) - log(refine_height)) / (faces[1] - N); in HoneeMeshTransform_PlateMesh()
105 …coords[i][1] = (1 - (coords[i][0] - domain_min[0]) * angle_coeff / domain_max[1]) * exp(log(refine… in HoneeMeshTransform_PlateMesh()
/honee/tests/junit-xml/
H A D.gitignore23 pip-log.txt
/honee/
H A D.gitignore65 *.log
H A DCHANGELOG.md23 - Add `HONEE_StrongBCInsert` and `HONEE_StrongBCCeed` log events
/honee/qfunctions/
H A Dnewtonian_state.h95 const CeedScalar entropy = log(Y.pressure) - gamma * log(rho); in StateEntropyFromPrimitive()
130 const CeedScalar log_P = -(entropy + gamma * log(-V.S_energy)) / (gamma - 1); in StatePrimitiveFromEntropy()
181 const CeedScalar entropy = log(p) - gamma * log(U.density); in StateEntropyFromConservative()
215 const CeedScalar log_rho = -(entropy + log(-V.S_energy)) / (gamma - 1); in StateConservativeFromEntropy()
234 const CeedScalar log_rho = -(entropy + log(-V.S_energy)) / (gamma - 1); in StateConservativeFromEntropy_fwd()
/honee/doc/
H A Druntime_options.md190 - View log for every timestep taken by the `TS` solver
194 - View log for every iteration taken by the `SNES` solver
206 - View PETSc performance log
/honee/problems/
H A Dnewtonian.c748 const CeedScalar entropy = log(P) - gamma * log(rho); in UnitTests_Newtonian()