Basic example for setting the verbosity of a problem using pyCAPS.Problem.setOutLevel() function.
7 print(
"Loading file into our Problem")
8 myProblem = myProblem.Porblem(problemName =
"outLevelExample",
9 capsFile=
"csmData/cfdMultiBody.csm",
14 myProblem.setOutLevel(
"minimal")
17 myProblem.setOutLevel(
"standard")
20 myProblem.setOutLevel(0)
23 myProblem.setOutLevel(2)
26 myProblem.setOutLevel(10)