def testRequest(): """Example for requesting something at the theGuiMsgHandler().""" keepReference = QApplication(sys.argv) initHandlers() g = theGuiMsgHandler() g.registerAddCallback(SESSION_KEY, createProjectPanel) reqId = g.requestObject(TYPE_PROJECT) g.waitforAnswer(reqId) reqId = g.requestObject(TYPE_CASE, None, project_key) g.waitforAnswer(reqId) caseP = coCaseMgrParams() nameAndCase = NameAndCoviseCase() nameAndCase.setFromFile('/work/common/Projekte/DC-CFDGui/datasets/' 'TINY/CoviseDaten/TINY.cocase') #nameAndCase.setFromFile( # '/work/common/Projekte/DC-CFDGui/datasets/' # 'msport/CoviseDaten/msport.cocase') caseP.origDsc = caseP.filteredDsc = coviseCase2DimensionSeperatedCase(nameAndCase.case, nameAndCase.name, nameAndCase.pathToCaseFile) g.setParams(case_key1, caseP) # testing static coloring if testMode==VIS_2D_STATIC_COLOR: colP = Part2DStaticColorVisParams() colP.g = 0 g.setParams( VisColor_key, colP ) status() reqId = g.runObject( case_key1 ) g.waitforAnswer(reqId) colP.r = 255 colP.g = 0 colP.b = 0 g.setParams( VisColor_key, colP ) g.runObject( case_key1 ) #testing scalar coloring elif testMode==VIS_2D_SCALAR_COLOR: colP = Part2DScalarColorVisParams() colP.variable = scalar_variable g.setParams( VisColor_key, colP ) g.runObject( case_key1 ) elif testMode==VIS_STREAMLINE: streamP = PartStreamlineVisParams() streamP.variable = vector_variable """ colorP = coColorCreator() ctableP = coColorTableParams() ctableP.min = 98 ctableP.max = 100 ctableP.colorMapIdx = 2 ctable = coColorTable() ctable.params = ctableP colorP.params.colorTable = ctable streamP.colorCreator = colorP colorP.run(RUN_ALL) """ g.setParams( Tracer_key, streamP ) r = g.runObject( case_key1, RUN_OCT ) g.waitforAnswer(r) g.runObject( Tracer_key ) #g.saveObject(0, "/work/sk_te/test.coprj") theNet().save("/work/ko_te/testgui.net") elif testMode==VIS_STREAMLINE_2D: streamP = PartStreamline2DVisParams() streamP.variable = vector_variable streamP.alignedRectangle = Line3D() streamP.alignedRectangle.setStartEndPoint(0.1, -0.6, 0., 0.5, -0.8, 0. ) g.setParams( Tracer_key, streamP ) r = g.runObject( case_key1, RUN_OCT ) g.waitforAnswer(r) g.runObject( Tracer_key ) theNet().save("/work/sk_te/test.net") status() elif testMode==VIS_PLANE: planeP = PartPlaneVisParams() planeP.variable = vector_variable planeP.alignedRectangle.middle = (0, 0, 1) """ colorP = coColorCreator() ctableP = coColorTableParams() ctableP.min = 98 ctableP.max = 100 ctableP.colorMapIdx = 2 ctable = coColorTable() ctable.params = ctableP colorP.params.colorTable = ctable streamP.colorCreator = colorP colorP.run(RUN_ALL) """ g.setParams( Tracer_key, planeP ) r = g.runObject( case_key1, RUN_OCT ) g.waitforAnswer(r) g.runObject( Tracer_key ) #g.saveObject(0, "/work/ko_te/test.coprj") theNet().save("/work/ko_te/testgui.net") elif testMode==VIS_VECTOR: vectorP = PartVectorVisParams() vectorP.variable = vector_variable """ colorP = coColorCreator() ctableP = coColorTableParams() ctableP.min = 98 ctableP.max = 100 ctableP.colorMapIdx = 2 ctable = coColorTable() ctable.params = ctableP colorP.params.colorTable = ctable streamP.colorCreator = colorP colorP.run(RUN_ALL) """ g.setParams( Tracer_key, vectorP ) r = g.runObject( case_key1, RUN_OCT ) g.waitforAnswer(r) g.runObject( Tracer_key ) #g.saveObject(0, "/work/ko_te/test.coprj") theNet().save("/work/ko_te/testgui.net") elif testMode==VIS_ISOPLANE: isoplaneP = PartIsoSurfaceVisParams() isoplaneP.variable = vector_variable """ colorP = coColorCreator() ctableP = coColorTableParams() ctableP.min = 98 ctableP.max = 100 ctableP.colorMapIdx = 2 ctable = coColorTable() ctable.params = ctableP colorP.params.colorTable = ctable streamP.colorCreator = colorP colorP.run(RUN_ALL) """ g.setParams( Tracer_key, isoplaneP ) r = g.runObject( case_key1, RUN_OCT ) g.waitforAnswer(r) g.runObject( Tracer_key ) #g.saveObject(0, "/work/ko_te/test.coprj") theNet().save("/work/ko_te/testgui.net") else : status() g.runObject( case_key1 ) vP = VisItemParams() vP.isVisible=True g.setParams( VisColor_key, vP ) theNet().save("/work/sk_te/testgui.net") if False: # True: reqId = g.requestObject(TYPE_CASE, None, project_key) g.waitforAnswer(reqId) caseP = coCaseMgrParams() caseP.filename = ( '/work/common/Projekte/DC-CFDGui/datasets/' 'msport/CoviseDaten/msport.cocase') g.setParams(case_key1, caseP)
def forward(self, key, isOn): aux = VisItemParams() aux.isVisible = isOn theGuiMsgHandler().setParams(key, aux)
def testRequest(): """Example for requesting something at the theGuiMsgHandler().""" keepReference = QApplication(sys.argv) initHandlers() g = theGuiMsgHandler() g.registerAddCallback(SESSION_KEY, createProjectPanel) reqId = g.requestObject(TYPE_PROJECT) g.waitforAnswer(reqId) reqId = g.requestObject(TYPE_CASE, None, project_key) g.waitforAnswer(reqId) caseP = coCaseMgrParams() nameAndCase = NameAndCoviseCase() nameAndCase.setFromFile('/work/common/Projekte/DC-CFDGui/datasets/' 'TINY/CoviseDaten/TINY.cocase') #nameAndCase.setFromFile( # '/work/common/Projekte/DC-CFDGui/datasets/' # 'msport/CoviseDaten/msport.cocase') caseP.origDsc = caseP.filteredDsc = coviseCase2DimensionSeperatedCase( nameAndCase.case, nameAndCase.name, nameAndCase.pathToCaseFile) g.setParams(case_key1, caseP) # testing static coloring if testMode == VIS_2D_STATIC_COLOR: colP = Part2DStaticColorVisParams() colP.g = 0 g.setParams(VisColor_key, colP) status() reqId = g.runObject(case_key1) g.waitforAnswer(reqId) colP.r = 255 colP.g = 0 colP.b = 0 g.setParams(VisColor_key, colP) g.runObject(case_key1) #testing scalar coloring elif testMode == VIS_2D_SCALAR_COLOR: colP = Part2DScalarColorVisParams() colP.variable = scalar_variable g.setParams(VisColor_key, colP) g.runObject(case_key1) elif testMode == VIS_STREAMLINE: streamP = PartStreamlineVisParams() streamP.variable = vector_variable """ colorP = coColorCreator() ctableP = coColorTableParams() ctableP.min = 98 ctableP.max = 100 ctableP.colorMapIdx = 2 ctable = coColorTable() ctable.params = ctableP colorP.params.colorTable = ctable streamP.colorCreator = colorP colorP.run(RUN_ALL) """ g.setParams(Tracer_key, streamP) r = g.runObject(case_key1, RUN_OCT) g.waitforAnswer(r) g.runObject(Tracer_key) #g.saveObject(0, "/work/sk_te/test.coprj") theNet().save("/work/ko_te/testgui.net") elif testMode == VIS_STREAMLINE_2D: streamP = PartStreamline2DVisParams() streamP.variable = vector_variable streamP.alignedRectangle = Line3D() streamP.alignedRectangle.setStartEndPoint(0.1, -0.6, 0., 0.5, -0.8, 0.) g.setParams(Tracer_key, streamP) r = g.runObject(case_key1, RUN_OCT) g.waitforAnswer(r) g.runObject(Tracer_key) theNet().save("/work/sk_te/test.net") status() elif testMode == VIS_PLANE: planeP = PartPlaneVisParams() planeP.variable = vector_variable planeP.alignedRectangle.middle = (0, 0, 1) """ colorP = coColorCreator() ctableP = coColorTableParams() ctableP.min = 98 ctableP.max = 100 ctableP.colorMapIdx = 2 ctable = coColorTable() ctable.params = ctableP colorP.params.colorTable = ctable streamP.colorCreator = colorP colorP.run(RUN_ALL) """ g.setParams(Tracer_key, planeP) r = g.runObject(case_key1, RUN_OCT) g.waitforAnswer(r) g.runObject(Tracer_key) #g.saveObject(0, "/work/ko_te/test.coprj") theNet().save("/work/ko_te/testgui.net") elif testMode == VIS_VECTOR: vectorP = PartVectorVisParams() vectorP.variable = vector_variable """ colorP = coColorCreator() ctableP = coColorTableParams() ctableP.min = 98 ctableP.max = 100 ctableP.colorMapIdx = 2 ctable = coColorTable() ctable.params = ctableP colorP.params.colorTable = ctable streamP.colorCreator = colorP colorP.run(RUN_ALL) """ g.setParams(Tracer_key, vectorP) r = g.runObject(case_key1, RUN_OCT) g.waitforAnswer(r) g.runObject(Tracer_key) #g.saveObject(0, "/work/ko_te/test.coprj") theNet().save("/work/ko_te/testgui.net") elif testMode == VIS_ISOPLANE: isoplaneP = PartIsoSurfaceVisParams() isoplaneP.variable = vector_variable """ colorP = coColorCreator() ctableP = coColorTableParams() ctableP.min = 98 ctableP.max = 100 ctableP.colorMapIdx = 2 ctable = coColorTable() ctable.params = ctableP colorP.params.colorTable = ctable streamP.colorCreator = colorP colorP.run(RUN_ALL) """ g.setParams(Tracer_key, isoplaneP) r = g.runObject(case_key1, RUN_OCT) g.waitforAnswer(r) g.runObject(Tracer_key) #g.saveObject(0, "/work/ko_te/test.coprj") theNet().save("/work/ko_te/testgui.net") else: status() g.runObject(case_key1) vP = VisItemParams() vP.isVisible = True g.setParams(VisColor_key, vP) theNet().save("/work/sk_te/testgui.net") if False: # True: reqId = g.requestObject(TYPE_CASE, None, project_key) g.waitforAnswer(reqId) caseP = coCaseMgrParams() caseP.filename = ('/work/common/Projekte/DC-CFDGui/datasets/' 'msport/CoviseDaten/msport.cocase') g.setParams(case_key1, caseP)