Home
last modified time | relevance | path

Searched full:start (Results 1 – 14 of 14) sorted by relevance

/honee/tests/
H A Dsmartsim_regression_framework.py95 """To create the test directory and start SmartRedis database"""
107 self.exp.start(self.database)
140 # Start the client model
141 self.exp.start(client_exp, summary=False, block=True)
197 start: float = time.time()
205 elapsed_sec=time.time() - start,
207 '%Y-%m-%d %H:%M:%S %Z', time.localtime(start)),
H A Djunit_common.py277 """Find the start and end positions of the first outer paired delimeters
289 …le[int]: If matching delimeters are found, return indices in `list`. Otherwise, return end < start.
295 start: int = line.find(open)
296 if start < 0:
299 for i in range(start + 1, len(line)):
305 return start, i
306 return start, -1
324 start, end = find_matching(line)
325 if end < start:
328 keyvalues_str = line[start:end + 1]
[all …]
H A Dgaussianwave_cgns_load.yaml38 # start: 0
/honee/qfunctions/
H A Dutils.h279 where "a" is `amplitude`, "s" is `start`, and "l" is `length`.
283 @param[in] start Location where ramp begins to reduce from `amplitude` to 0
287 …ar LinearRampCoefficient(CeedScalar amplitude, CeedScalar length, CeedScalar start, CeedScalar x) { in LinearRampCoefficient() argument
288 if (x < start) { in LinearRampCoefficient()
290 } else if (x < start + length) { in LinearRampCoefficient()
291 return amplitude * ((x - start) * (-1 / length) + 1); in LinearRampCoefficient()
302 @param[in] start Starting index to store components
309 CEED_QFUNCTION_HELPER int StoredValuesPack(CeedInt Q, CeedInt i, CeedInt start, CeedInt num_comp, c… in StoredValuesPack() argument
311 for (CeedInt j = 0; j < num_comp; j++) stored[(start + j) * Q + i] = values_at_qpnt[j]; in StoredValuesPack()
321 @param[in] start Starting index to store components
[all …]
H A Dnewtonian.h102 …See `LinearRampCoefficient()` for details on the `amplitude`, `length`, `start`, and `location` ar…
108 @param[in] start Start of the IDL ramp
115 … CeedScalar length, CeedScalar start, CeedScalar location, CeedScalar pressure, in InternalDampingLayer_IFunction_Integrand() argument
117 const CeedScalar sigma_ = LinearRampCoefficient(amplitude, length, start, location); in InternalDampingLayer_IFunction_Integrand()
/honee/doc/
H A Dintro.md4 :start-after: "<!-- getting-started -->"
H A Dtheory.md740 - Start of IDL in the x direction
/honee/
H A Dindex.md4 :start-after: "<!-- abstract -->"
H A Dconf.py221 # (source start file, target name, title,
230 # (source start file, name, description, authors, manual section).
238 # (source start file, target name, title, author,
H A DDoxyfile1299 # the setting GENERATE_TREEVIEW). It is highly recommended to start with a
1997 # is highly recommended to start with a default header using
2175 # man pages. In case the manual section does not start with a number, the number
/honee/examples/
H A Dgaussianwave.yaml42 # start: 0
H A Dflatplate_STG.yaml26 start: -3.1
H A Dvortexshedding.yaml35 # Small gravity vector to break symmetry so shedding can start
/honee/problems/
H A Dnewtonian.c462 …PetscCall(PetscOptionsScalar("-idl_start", "Start of IDL in the x direction", NULL, newtonian_ig_c… in NS_NEWTONIAN_IG()