<div dir="ltr">Hello all:<div><br></div><div>I have a trace from a simple contour that I drew on a data set, and there are parts of it that I don't understand. Here it is, with some question numbers:</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><div>from paraview.simple import *</div></div><div><div><br></div></div><div><div>data = EnSightReader(CaseFileName='/my/data/file.case')</div></div><div><div><br></div></div><div><div>renderView1 = GetActiveViewOrCreate('RenderView')</div></div><div><div>dataDisplay = Show(data, renderView1)    ## 1</div></div><div><div><br></div></div><div><div>dataDisplay.Representation = 'Surface'</div></div><div><div>renderView1.ResetCamera()</div></div><div><div>dataDisplay.SetScalarBarVisibility(renderView1, True)</div></div><div><div>renderView1.Update()</div></div><div><div><br></div></div><div><div>pressureLUT = GetColorTransferFunction('pressure')  ## 2</div></div><div><div>contour1 = Contour(Input=data)</div></div><div><div><br></div></div><div><div>contour1.ContourBy = ['POINTS', 'uds_0_scalar']</div></div><div><div>contour1.Isosurfaces = [500.0]</div></div><div><div><br></div></div><div><div>contour1Display = Show(contour1, renderView1)</div></div><div><div>contour1Display.Representation = 'Surface'</div></div><div><div>Hide(data, renderView1)</div></div><div><div><br></div></div><div><div>contour1Display.SetScalarBarVisibility(renderView1, True) ## 3</div></div><div><div>renderView1.Update()</div></div></blockquote><div><br></div><div>My questions: </div><div><br></div><div> 1. Why do I have to "Show" the raw data right after it's read? I almost never actually want to do that. I just want to show the contour. Showing and Hiding the raw data seems like a waste of cycles, but when I remove references to dataDisplay, I get an error: "Failed to determine the LookupTable being used." which seems oddly unrelated to what I did.<br></div><div><br></div><div> 2. Where does this value get used? It doesn't seem to me that it is being used, but it seems related to the last and the next question:</div><div><br></div><div> 3. When I choose different scalar values to contour, I often see the same "Failed to determine the LookupTable being used." here. There seem to be some limitations on what scalars I can use, but what are they and where can I read more about these missing lookup tables?</div><div><br></div><div>Thank you,</div><div><br></div><div> -Tom<br><br><br><br></div></div>