# Visit 2.0.0 log file
ScriptVersion = "2.0.0"
if ScriptVersion != Version():
    print "This script is for VisIt %s. It may not work with version %s" % (ScriptVersion, Version())
ShowAllWindows()
OpenDatabase("../../../data/rect3d.silo", 0)
# The UpdateDBPluginInfo RPC is not supported in the VisIt module so it will not be logged.
AddPlot("Pseudocolor", "u", 1, 0)
DrawPlots()
ExportDBAtts = ExportDBAttributes()
ExportDBAtts.db_type = "BOV"
ExportDBAtts.filename = "r3d"
ExportDBAtts.dirname = "."
ExportDBAtts.variables = ("u")
ExportDBAtts.opts.types = ()
ExportDatabase(ExportDBAtts)
RemoveAllOperators(0)
SetActivePlots(0)
DeleteActivePlots()
OpenDatabase("../../../data/rect3d.silo")
