We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc2942 commit 7c08008Copy full SHA for 7c08008
examples/SU2.py
@@ -3,7 +3,7 @@
3
import sys
4
import time
5
6
-from simvue import Simvue
+from simvue import Run
7
8
if __name__ == "__main__":
9
# Name of history file to collect metrics from
@@ -35,7 +35,7 @@
35
if line.startswith(attr):
36
metadata[attr] = line.split('%s= ' % attr)[1].strip()
37
38
- run = Simvue()
+ run = Run()
39
run.init(metadata=metadata, tags=['SU2'],
40
description='SU2 tutorial https://su2code.github.io/tutorials/Inviscid_ONERAM6/')
41
examples/logging-to-simvue.py
@@ -1,8 +1,8 @@
1
import logging
2
-from simvue import Simvue, Handler
+from simvue import Run, Handler
run.init(tags=['logging'],
description='Logging test')
0 commit comments