hybrid/expr_cmfe.py# ----------------------------------------------------------------------------
# CLASSES: nightly
#
# Test Case: expr_cmfe.py
#
# Defect ID: None
#
# Programmer: Hank Childs
# Date: September 9, 2005
#
# Modifications:
#
# Hank Childs, Thu Dec 29 11:21:26 PST 2005
# Expand the color range for a plot of an expression that should result in
# uniformly "1", but actually has some small variation. This causes
# issues with coloring between optimized and non-optimized modes.
#
# Mark C. Miller, Wed Jan 20 07:37:11 PST 2010
# Added ability to swtich between Silo's HDF5 and PDB data.
# ----------------------------------------------------------------------------
OpenDatabase(silo_data_path("wave.visit"))
# Test that database expressions can still be generated.
DefineVectorExpression("cmfe", "conn_cmfe(<%s[30]i:direction>, quadmesh)" % cmfe_silo_data_path("wave.visit"))
AddPlot("Vector", "cmfe")
DrawPlots()
Test("expr_cmfe_01")
DeleteAllPlots()
DefineScalarExpression("cmfe2", "conn_cmfe(coord(<%s[40]i:pressure>)[1], quadmesh)" % cmfe_silo_data_path("wave.visit"))
AddPlot("Pseudocolor", "cmfe2")
DrawPlots()
Test("expr_cmfe_02")
DeleteAllPlots()
DefineScalarExpression("cmfe3", "coord(quadmesh)[1] - conn_cmfe(coord(<%s[40]i:pressure>)[1], quadmesh)" % cmfe_silo_data_path("wave.visit"))
AddPlot("Pseudocolor", "cmfe3")
DrawPlots()
Test("expr_cmfe_03")
DeleteAllPlots()
DefineScalarExpression("cmfe4", "coord(quadmesh)[1] - cmfe2")
AddPlot("Pseudocolor", "cmfe4")
DrawPlots()
Test("expr_cmfe_04")
DeleteAllPlots()
DefineScalarExpression("cmfe5", "volume(quadmesh) / conn_cmfe(volume(<%s[40]i:quadmesh>), quadmesh)" % cmfe_silo_data_path("wave.visit"))
AddPlot("Pseudocolor", "cmfe5")
pc = PseudocolorAttributes()
pc.min = 0.5
pc.minFlag = 1
pc.max = 1.5
pc.maxFlag = 1
SetPlotOptions(pc)
DrawPlots()
Test("expr_cmfe_05")
Exit()