MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / OPS_SetDoubleOutput

Function OPS_SetDoubleOutput

SRC/api/elementAPI_TCL.cpp:399–409  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397
398extern "C"
399int OPS_SetDoubleOutput(int* numData, double* data, bool scalar)
400{
401 int numArgs = *numData;
402 char buffer[40];
403 for (int i = 0; i < numArgs; i++) {
404 sprintf(buffer, "%35.20f ", data[i]);
405 Tcl_AppendResult(theInterp, buffer, NULL);
406 }
407
408 return 0;
409}
410
411extern "C" int OPS_SetDoubleListsOutput(
412 std::vector<std::vector<double>>& data) {

Callers 9

OPS_ParticleGroupFunction · 0.50
OPS_sdfResponseFunction · 0.50
OPS_sectionLocationFunction · 0.50
OPS_sectionWeightFunction · 0.50
OPS_sectionDisplacementFunction · 0.50
OPS_NDGetStrainFunction · 0.50
OPS_NDGetStressFunction · 0.50
OPS_NDGetResponseFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected