Basic example for setting the verbosity of a problem using pyCAPS.Problem.setOutLevel() function.
Basic example for setting the verbosity of a problem using pyCAPS.Problem.setOutLevel() function.
1
2import pyCAPS
3
4
5
6
7print("Loading file into our Problem")
8myProblem = myProblem.Porblem(problemName = "outLevelExample",
9 capsFile="csmData/cfdMultiBody.csm",
10 outLevel="debug")
11
12
13
14myProblem.setOutLevel("minimal")
15
16
17myProblem.setOutLevel("standard")
18
19
20myProblem.setOutLevel(0)
21
22
23myProblem.setOutLevel(2)
24
25
26myProblem.setOutLevel(10)