jet flow in a combustion chamber
Table of Contents
- 1. contacts
- 2. Paper digest
- 2.1. LES vs. RANS
- 2.2. Dynamics of Transient Fuel Injection, Mixing, and Auto-Ignition
- 2.3. rothamer research group, Experimental Studies of Transient Jets
- 2.4. the transient start of supersonic jets
- 2.5. decelerating transient turbulent jets
- 2.6. validi 2016, PhD thesis, Michigan State University
- 2.7. P wang, 2008,
- 2.8. TJI assited combustion system 2016
- 3. TODO Purpose of study
- 4. TODO Questions
- 5. FAQ
- 6. problem description
- 7. results
- 8. setups
- 9. source files
- 10. Post-processing
- 11. theory
- 12. Video
- 13. Reference
- 14. reseach groups
- 15. How to
- 16. Results
- 17. Script FAQ
1 contacts
Chia-Fon Lee
Professor, Mechanical Science and Engineering Professor, ZJU-Illinois Joint Institute, College of Engineering
2 Paper digest
effects of transient rate of injection on high pressure diesel fuel jets
2.1 LES vs. RANS
s. som, 2012, Comparison of RANS and LES Turbulence Models against Constant Volume Diesel Exper-iments
2.2 Dynamics of Transient Fuel Injection, Mixing, and Auto-Ignition
https://tcrl.osu.edu/research/dynamics-transient-fuel-injection-mixing-and-auto-ignition
chemical kinetics
turbulence
2.3 rothamer research group, Experimental Studies of Transient Jets
2.4 the transient start of supersonic jets
2.5 decelerating transient turbulent jets
2009 Mark P B Musculus, JFM, entrainment waves in decelerating transient turbulent jets Doi: 10.1017/S0022112009990826
keywords: decelerating transient turbulent jet
why study it?
the majority of the combustion event occurs after the end of injection, during the decelration phase.
entrainment during the deceleration phase can be critical for engine performance.
2.5.1 Bing huan, 2012, physics of fluids
2.6 validi 2016, PhD thesis, Michigan State University
TJI in different combustion systems with DNS and LES
2.7 P wang, 2008,
what is new of wang(2008) compared with experimental result? 39, 2149–2164. Chen, C.J., Rodi, W., 1980. Vertical Turbulent Buoyant Jets—A Review of Experimental Data. The Science and Application of Heat and Mass Transfer. Pergamon Press, New York.
\( \omega = \nabla \times v \) S.V. Gordeyev and F. O. Thomas. Coherent structure in the turbulent planar jet. part
- extraction of proper orthogonal decomposition eigenmodes and their self-similarity.
Journal of Fluid Mechanics, 414:145 – 194, 2000.
2.8 TJI assited combustion system 2016
- PCh
- pre-chamber
- MCh
- main chamber
- RCMs
- rapid compression machines
- IC
- internal combustion
- SGS
- sub-grid scale
- probalility density function
conclusions: turbulence fields becomes fully developed by t=3τ0 (P11)
- τ0 : flow through time
simulation performed up to t=17τ0 (P11)
3 TODO Purpose of study
4 TODO Questions
10 realization of the les model ? Fig. 6, BIng Hu
inlet BCs
time step size
5 FAQ
5.1 is it a spark ignition (gasoline)?
yes
5.2 time step size in your LES ?
5.3 When does the main chamber start to burn/combust?
when the jet flow enter the main chamber
5.4 how to estimate the Mach number
ma=U/C
and
C=sqrt( γ R T)
how to define the reference temperature (T)?
answer: use local T at every computational point
5.5 mixture fraction calculation
mixture fraction, f, is defined as the mass fraction from fuel, i.e.
f=mfuel/mtotal
the question is how to define the sample area/cubic size in the post processing ?
answer: use the mesh size
6 problem description
intial conditions
inlet gas ma=u/c = 1.3 Re = ρ u L / μ =0.231*1102.95*0.0025 / density: pressure temperature velocity, u= 1102.95
c: speed of sound
c=sqrt(γ RT)
flow direction +x
7 results
axial and radial distribution of <Ux>, TKE, <ui uj>
jet spreading angle is 28 \degree based on emrirical estimation
7.1 mixture fraction – defining the jet boundary
- f
- mixture fraction, which is the mass
fraction that originated from the fuel stream. it is the local mass fraction of burnt and unburt fuel stream elements.
why use mixture fraction?
because atomic elements are conserved in chemical reactions. In turn, the mixture fraction is conserved scalar quantity, and therefore its governing transport equation does not have a source term. (ch8, theory guide, fluent)
How to calculate mass fraction in post processing?
you can define a small cubic/plane and calculate the mass ratio = mass(fule)/masstotal the problem is the size of cubic/plane?
How to define the jet boundary?
8 setups
LES time step size: 5e-7s it is 0.0000005. The snapshots were saved every 500 steps, so for the data you have got, it is 0.0000005 * 500 seconds between two snapshots
inlet center (-0.432, 0, 0) flow direction, +x
9 source files
- transient.case
- scripts for paraview
- (no term)
- automate naming of files attach
_*
at the end of filename
9.1 transient.case
FORMAT type: ensight gold GEOMETRY model: solution.pval.unsteady1.geo VARIABLE scalar per node: density solution.pval.unsteady*.density vector per node: v solution.pval.unsteady*.v scalar per node: pressure solution.pval.unsteady*.pressure scalar per node: temperature solution.pval.unsteady*.temperature
TIME time set: 1 number of steps: 1 filename start number: 61 filename increment: 1 time values: 1.8385297551528
10 Post-processing
10.1 plot axial streamwise velocity–paraview
plotOverLine1.Source.Point1 = [0.0, 0.0, 0.0] plotOverLine1.Source.Point2 = [-0.435, 0.0, 0.0]
pay attention to x coordinate of point2, which is -0.435
10.1.1 script
#### import the simple module from the paraview from paraview.simple import * #### disable automatic camera reset on 'Show' paraview.simple.DisableFirstRenderCameraReset()
transient312case = EnSightReader(CaseFileName='/home/kaiming/Documents/ZJUProjects/Jet/data/transient312.case') transient312case.PointArrays = ['density', 'v', 'pressure', 'temperature']
transient312case.PointArrays = ['v']
renderView1 = GetActiveViewOrCreate('RenderView')
transient312caseDisplay = Show(transient312case, renderView1)
transient312caseDisplay.ColorArrayName = [None, ''] transient312caseDisplay.GlyphType = 'Arrow' transient312caseDisplay.ScalarOpacityUnitDistance = 0.0016420380639339577
renderView1.ResetCamera()
ColorBy(transient312caseDisplay, ('FIELD', 'vtkBlockColors'))
transient312caseDisplay.SetScalarBarVisibility(renderView1, True)
vtkBlockColorsLUT = GetColorTransferFunction('vtkBlockColors')
vtkBlockColorsPWF = GetOpacityTransferFunction('vtkBlockColors')
plotOverLine1 = PlotOverLine(Input=transient312case, Source='High Resolution Line Source')
plotOverLine1.Source.Point1 = [-0.43700000643730164, -0.0860000029206276, -0.0860000029206276] plotOverLine1.Source.Point2 = [1.9165229048212495e-07, 0.0860000029206276, 0.0860000029206276]
plotOverLine1.Tolerance = 2.22044604925031e-16
plotOverLine1.Source.Point1 = [0.0, 0.0, 0.0] plotOverLine1.Source.Point2 = [-0.435, 0.0, 0.0]
viewLayout1 = GetLayout()
lineChartView1 = CreateView('XYChartView') lineChartView1.ViewSize = [473, 837]
viewLayout1.AssignView(2, lineChartView1)
plotOverLine1Display = Show(plotOverLine1, lineChartView1)
plotOverLine1Display.CompositeDataSetIndex = 1 plotOverLine1Display.UseIndexForXAxis = 0 plotOverLine1Display.XArrayName = 'arclength' plotOverLine1Display.SeriesVisibility = ['vMagnitude'] plotOverLine1Display.SeriesLabel = ['arclength', 'arclength', 'vX', 'vX', 'vY', 'vY', 'vZ', 'vZ', 'vMagnitude', 'vMagnitude', 'vtkValidPointMask', 'vtkValidPointMask', 'PointsX', 'PointsX', 'PointsY', 'PointsY', 'PointsZ', 'PointsZ', 'PointsMagnitude', 'PointsMagnitude'] plotOverLine1Display.SeriesColor = ['arclength', '0', '0', '0', 'vX', '0.89', '0.1', '0.11', 'vY', '0.22', '0.49', '0.72', 'vZ', '0.3', '0.69', '0.29', 'vMagnitude', '0.6', '0.31', '0.64', 'vtkValidPointMask', '1', '0.5', '0', 'PointsX', '0.65', '0.34', '0.16', 'PointsY', '0', '0', '0', 'PointsZ', '0.89', '0.1', '0.11', 'PointsMagnitude', '0.22', '0.49', '0.72'] plotOverLine1Display.SeriesPlotCorner = ['arclength', '0', 'vX', '0', 'vY', '0', 'vZ', '0', 'vMagnitude', '0', 'vtkValidPointMask', '0', 'PointsX', '0', 'PointsY', '0', 'PointsZ', '0', 'PointsMagnitude', '0'] plotOverLine1Display.SeriesLineStyle = ['arclength', '1', 'vX', '1', 'vY', '1', 'vZ', '1', 'vMagnitude', '1', 'vtkValidPointMask', '1', 'PointsX', '1', 'PointsY', '1', 'PointsZ', '1', 'PointsMagnitude', '1'] plotOverLine1Display.SeriesLineThickness = ['arclength', '2', 'vX', '2', 'vY', '2', 'vZ', '2', 'vMagnitude', '2', 'vtkValidPointMask', '2', 'PointsX', '2', 'PointsY', '2', 'PointsZ', '2', 'PointsMagnitude', '2'] plotOverLine1Display.SeriesMarkerStyle = ['arclength', '0', 'vX', '0', 'vY', '0', 'vZ', '0', 'vMagnitude', '0', 'vtkValidPointMask', '0', 'PointsX', '0', 'PointsY', '0', 'PointsZ', '0', 'PointsMagnitude', '0']
SaveData('/home/kaiming/Documents/ZJUProjects/Jet/paraview/plotoverline/v312.csv', proxy=plotOverLine1) Disconnect() Connect()
10.2 axial velocity along centerline (Jet) – Matlab
input: velocity.csv file from paraview goal: post processing data, rerange data sequence
- Read comma-separated value (CSV) file
syntax:
M = csvread(filename)
reads a comma-separated value (CSV) formatted file into array M. The file must contain only numeric values.
>> filename='v.csv';
>> m=csvread(filename)
m = Columns 1 through 4: 3.7053e-14 8.2965e-13 1.7973e-12 1.0000e+00
-2.5358e-14 2.9547e-13 -2.3817e-13 1.0000e+00
7.2622e-15 8.2172e-13 -4.0024e-13 1.0000e+00
-4.2667e-14 -1.7888e-12 4.8413e-13 1.0000e+00
- assign first column (Ux) to a variable 'u'
>>u=m(:,1);
- change column vector to row vector (transpose)
>> ux=u.'
- change orders with
fliplr
ux=fliplr(u)
i.e. If A is a row vector,
A = 1 3 5 7 9
then fliplr(A) produces
9 7 5 3 1
- change row vector to column vector
>> ux=ux(:)
ux =
1.0042e+03
- combine column vectors into matrix
>> uvsx =[ux x] uvsx =
1.0042e+03 0.0000e+00 6.9823e+02 1.0000e-02 3.2162e+02 2.0000e-02 4.0328e+02 3.0000e-02
- normalized Ux, and x
>> uo=1102.95 uo = 1103.0 >> uxnor=ux/u0 where u0 is jet exit velocity
plotting with gnuplot/matlab >> xnor=x/D where D is diameter of jet
- plot(xnor, uxnor)
10.2.1 scpirts
filename='v.csv'; % assign file to a variable m=csvread(filename); %Read comma-separated value (CSV) file u=m(:,1); % extract first column data, i.e. Ux u=u.' ; %change column vector to row vector (transpose) ux=fliplr(u); % change orders of array, Flip array left to right ux=ux.'; % change row vector back to column vector (transpose) u0=1102.95; % jet exit velocity uxnor=ux/u0; % normalize axial veloicty x=m(:,5) ; % extract 5th column data, i.e. x coordinates d=0.0025; % diameter of jet xnor=x/d; % normalize axial distance plot(xnor, uxnor) print -deps ux.eps % save plot as eps image output=[uxnor xnor]; % format a matrix save -ascii uvsx.txt output;
10.2.2 log
>> load v.csv error: load: unable to determine file format of 'v.csv'
solution: use csvread
10.3 Q-criterion
10.3.1 scripts
#### import the simple module from the paraview from paraview.simple import * #### disable automatic camera reset on 'Show' paraview.simple.DisableFirstRenderCameraReset()
transient91case = EnSightReader(CaseFileName='/home/kaiming/Documents/ZJUProjects/Jet/data/transient514.case') transient91case.PointArrays = ['density', 'v', 'pressure', 'temperature']
renderView1 = GetActiveViewOrCreate('RenderView') renderView1.Background =[1,1,1]
renderView1.ViewSize = [1117, 866]
densityLUT = GetColorTransferFunction('density')
transient91caseDisplay = Show(transient91case, renderView1)
transient91caseDisplay.ColorArrayName = ['POINTS', 'density'] transient91caseDisplay.LookupTable = densityLUT transient91caseDisplay.GlyphType = 'Arrow' transient91caseDisplay.ScalarOpacityUnitDistance = 0.0016420380639339577
densityLUTColorBar = GetScalarBar(densityLUT, renderView1) densityLUTColorBar.AutoOrient = 0 ## legend orientation densityLUTColorBar.Orientation = 'Horizontal' densityLUTColorBar.RangeLabelFormat = '%.2f' ## legend normalized position densityLUTColorBar.Position = [0.3, 0.1]
densityLUTColorBar.LabelColor = [0.0, 0.0, 0.0]
densityLUTColorBar.TitleColor = [0.0, 0.0, 0.0]
renderView1.ResetCamera()
transient91caseDisplay.SetScalarBarVisibility(renderView1, True)
densityPWF = GetOpacityTransferFunction('density')
gradientOfUnstructuredDataSet1 = GradientOfUnstructuredDataSet(Input=transient91case) gradientOfUnstructuredDataSet1.ScalarArray = ['POINTS', 'density']
gradientOfUnstructuredDataSet1.ScalarArray = ['POINTS', 'v'] gradientOfUnstructuredDataSet1.ComputeQCriterion = 1
gradientOfUnstructuredDataSet1Display = Show(gradientOfUnstructuredDataSet1, renderView1)
gradientOfUnstructuredDataSet1Display.ColorArrayName = ['POINTS', 'density'] gradientOfUnstructuredDataSet1Display.LookupTable = densityLUT gradientOfUnstructuredDataSet1Display.GlyphType = 'Arrow' gradientOfUnstructuredDataSet1Display.ScalarOpacityUnitDistance = 0.0016420380639339577
Hide(transient91case, renderView1)
gradientOfUnstructuredDataSet1Display.SetScalarBarVisibility(renderView1, True)
contour1 = Contour(Input=gradientOfUnstructuredDataSet1) contour1.ContourBy = ['POINTS', 'density'] contour1.Isosurfaces = [0.7536712437868118] contour1.PointMergeMethod = 'Uniform Binning'
contour1.ContourBy = ['POINTS', 'Q-criterion'] contour1.OutputPointsPrecision = 'Single' contour1.Isosurfaces = [1000000.0]
contour1Display = Show(contour1, renderView1)
contour1Display.ColorArrayName = ['POINTS', 'density'] contour1Display.LookupTable = densityLUT contour1Display.GlyphType = 'Arrow'
Hide(gradientOfUnstructuredDataSet1, renderView1)
contour1Display.SetScalarBarVisibility(renderView1, True)
renderView1.ResetCamera(-0.437000006437, -0.363715648651, -0.0146765615791, 0.0155552132055, -0.0139937549829, 0.0155133698136)
renderView1.CameraPosition = [-0.3693876183825478, -0.14945995339693371, 0.18962885092966636] renderView1.CameraFocalPoint = [-0.3579576038702967, -0.006822062851817242, -0.0021144211493554846] renderView1.CameraViewUp = [0.6080912350865584, 0.61916691517865, 0.4968474423392544] renderView1.CameraParallelScale = 0.04229428955697712
viewLayout1 = GetLayout()
SaveScreenshot('/home/kaiming/Documents/ZJUProjects/Jet/paraview/Qcriteriacoloredbydensity514.png' , layout=viewLayout1, magnification=1, quality=100)
Disconnect Connect
10.4 video of velocity contour
- create multiple files with matlab
- reading files in a loop
add time on screen
fixed label value LockDataRange not work
inlet fluid properties, and conditions
frequency
10.4.1 fixed label value
10.4.2 Python file I/O
- open a file
- read or write (perform operation)
- Close the file
How to open a file? use open()
function, which returns a file object
e.g.
>>> f = open("test.txt") # open file in current directory
>>> f = open("C:/Python/readme.txt") # specifying full path
>>> f = open("test.txt",mode='r',encoding='utf-8') # specifying mode, and encoding
https://www.programiz.com/python-programming/file-operation
How to close a file? Method 1
f = open("test.txt",encoding = 'utf-8')
# perform file operations
f.close()
Method 2
use a try... finally
block
10.4.3 loop in python
10.5 multiple slides with for loop
file: sliceForLoop.py
*
#### import the simple module from the paraview
from paraview.simple import *
#### disable automatic camera reset on 'Show'
paraview.simple._DisableFirstRenderCameraReset()
# for loop, 'Num' is number of loops
for Num in range(2):
# create a new 'EnSight Reader' and assign it to a variable, 'transientcase'
transientcase = EnSightReader(CaseFileName='/home/kaiming/Documents/ZJU_Projects/Jet/data/transient%i.case' %(Num+1))
transientcase.PointArrays = ['v', 'density', 'pressure', 'temperature'] # get active view
renderView1 = GetActiveViewOrCreate('RenderView')
# set a specific view size
renderView1.ViewSize = [1022, 837] # get color transfer function/color map for 'density'
densityLUT = GetColorTransferFunction('density')
densityLUT.LockDataRange = 1 # get opacity transfer function/opacity map for 'density'
densityPWF = GetOpacityTransferFunction('density') # show data in view
transientcaseDisplay = Show(transientcase, renderView1)
# trace defaults for the display properties.
transientcaseDisplay.ColorArrayName = ['POINTS', 'density']
transientcaseDisplay.LookupTable = densityLUT
transientcaseDisplay.GlyphType = 'Arrow'
transientcaseDisplay.ScalarOpacityUnitDistance = 0.0016420380639339577 # reset view to fit data
renderView1.ResetCamera() # show color bar/color legend
transientcaseDisplay.SetScalarBarVisibility(renderView1, False) # get opacity transfer function/opacity map for 'density'
densityPWF = GetOpacityTransferFunction('density') # reset view to fit data
renderView1.ResetCamera() #################
## slice
################
# create a new 'Slice'
slice1 = Slice(Input=transientcase)
slice1.SliceType = 'Plane'
slice1.SliceOffsetValues = [0.0] # init the 'Plane' selected for 'SliceType'
slice1.SliceType.Origin = [-0.21849990739250558, 0.0, 0.0] # Properties modified on slice1.SliceType
slice1.SliceType.Origin = [0.0, 0.0, 0.0]
slice1.SliceType.Normal = [0.0, 0.0, 1.0] # show data in view
slice1Display = Show(slice1, renderView1)
# trace defaults for the display properties.
slice1Display.ColorArrayName = ['POINTS', 'density']
slice1Display.LookupTable = densityLUT
slice1Display.GlyphType = 'Arrow' # hide data in view
Hide(transientcase, renderView1) # show color bar/color legend
slice1Display.SetScalarBarVisibility(renderView1, True) # set active source
SetActiveSource(transientcase) # reset view to fit data
renderView1.ResetCamera() # current camera placement for renderView1
renderView1.CameraPosition = [-0.3656950276430585, -0.000908563692513454, 0.21027127790890924]
renderView1.CameraFocalPoint = [-0.3656950276430585, -0.000908563692513454, 0.0]
renderView1.CameraParallelScale = 0.25006857916835856 # *****************
# change legend layout, and its font color, position
# ***************** # get color legend for 'densityLUT' in view 'renderView1'
densityLUTColorBar = GetScalarBar(densityLUT, renderView1) # Properties modified on densityLUTColorBar
densityLUTColorBar.AutoOrient = 0
densityLUTColorBar.RangeLabelFormat = '%.2f'
## legend orientation
densityLUTColorBar.Orientation = 'Horizontal' ## legend normalized position
densityLUTColorBar.Position = [0.3, 0.2] # change label color to 'black'
densityLUTColorBar.LabelColor = [1.0, 1.0, 1.0] # change titile color to 'black'
densityLUTColorBar.TitleColor = [1.0, 1.0, 1.0]
# *************** # set Background color as 'White'
renderView1.Background =[1,1,1] # get layout
viewLayout1 = GetLayout() # save screenshot
SaveScreenshot('/home/kaiming/Documents/ZJU_Projects/Jet/paraview/tem/d_%s.png' %(Num+1), layout=viewLayout1, magnification=1, quality=100) #################
# pressure contour
################## # show color bar/color legend
slice1Display.SetScalarBarVisibility(renderView1, False) # set active source
SetActiveSource(slice1) # set scalar coloring
ColorBy(slice1Display, ('POINTS', 'pressure')) # rescale color and/or opacity maps used to include current data range
slice1Display.RescaleTransferFunctionToDataRange(True) # show color bar/color legend
slice1Display.SetScalarBarVisibility(renderView1, True) # get color transfer function/color map for 'pressure' pressureLUT = GetColorTransferFunction('pressure')
pressureLUT.LockDataRange = 1 # get opacity transfer function/opacity map for 'pressure'
pressurePWF = GetOpacityTransferFunction('pressure') # set active source
SetActiveSource(transientcase)
# *****************
# change legend layout, and its font color, position
# ***************** # get color legend for 'pressureLUT' in view 'renderView1'
pressureLUTColorBar = GetScalarBar(pressureLUT, renderView1) # Properties modified on vLUTColorBar
pressureLUTColorBar.AutoOrient = 0
pressureLUTColorBar.RangeLabelFormat = '%.2f'
## legend orientation
pressureLUTColorBar.Orientation = 'Horizontal' ## legend normalized position
pressureLUTColorBar.Position = [0.3, 0.2] # change label color to 'black'
pressureLUTColorBar.LabelColor = [1.0, 1.0, 1.0] # change titile color to 'black'
pressureLUTColorBar.TitleColor = [1.0, 1.0, 1.0]
# *************** # current camera placement for renderView1
# current camera placement for renderView1
renderView1.CameraPosition = [-0.3656950276430585, -0.000908563692513454, 0.21027125790890924]
renderView1.CameraFocalPoint = [-0.3656950276430585, -0.000908563692513454, 0.0]
renderView1.CameraParallelScale = 0.25006857916835856 # save screenshot
SaveScreenshot('/home/kaiming/Documents/ZJU_Projects/Jet/paraview/tem/p_%s.png' %(Num+1), layout=viewLayout1, magnification=1, quality=100) ######################
# #temperature contour
###################### # show color bar/color legend
slice1Display.SetScalarBarVisibility(renderView1, False) # set active source
SetActiveSource(slice1) # set scalar coloring
ColorBy(slice1Display, ('POINTS', 'temperature')) # rescale color and/or opacity maps used to include current data range
slice1Display.RescaleTransferFunctionToDataRange(True) # show color bar/color legend
slice1Display.SetScalarBarVisibility(renderView1, True) # get color transfer function/color map for 'termperature' temperatureLUT = GetColorTransferFunction('temperature')
temperatureLUT.LockDataRange = 1 # get opacity transfer function/opacity map for 'temperature'
temperaturePWF = GetOpacityTransferFunction('temperature') # ******
# legend layout, and its font color, position
# ***** temperatureLUTColorBar = GetScalarBar(temperatureLUT, renderView1) # Properties modified on vLUTColorBar temperatureLUTColorBar.AutoOrient = 0
temperatureLUTColorBar.RangeLabelFormat = '%.2f'
## legend orientation
temperatureLUTColorBar.Orientation = 'Horizontal' ## legend normalized position
temperatureLUTColorBar.Position = [0.3, 0.2] # label color to 'black'
temperatureLUTColorBar.LabelColor = [1.0, 1.0, 1.0] # change 'titile' color to 'black'
temperatureLUTColorBar.TitleColor = [1.0, 1.0, 1.0]
# ***************** # set active source
SetActiveSource(transientcase) # current camera placement for renderView1
# current camera placement for renderView1
renderView1.CameraPosition = [-0.3656950276430585, -0.000908563692513454, 0.21027127790890924]
renderView1.CameraFocalPoint = [-0.3656950276430585, -0.000908563692513454, 0.0]
renderView1.CameraParallelScale = 0.25006857917835856 # save screenshot
SaveScreenshot('/home/kaiming/Documents/ZJU_Projects/Jet/paraview/tem/t_%s.png' %(Num+1), layout=viewLayout1, magnification=1, quality=100) # *****************
# Velocity
# **************** # show color legend
slice1Display.SetScalarBarVisibility(renderView1, False) # set active source
SetActiveSource(slice1) # set scalar coloring
ColorBy(slice1Display, ('POINTS', 'v')) # rescale color and/or opacity maps used to include current data range
slice1Display.RescaleTransferFunctionToDataRange(True) # show color bar/color legend
slice1Display.SetScalarBarVisibility(renderView1, True) # get color transfer function/color map for 'v' vLUT = GetColorTransferFunction('v')
vLUT.LockDataRange = 1 # get opacity transfer function/opacity map for 'v'
vPWF = GetOpacityTransferFunction('v') # *****************
# change legend layout, and its font color, position
# ***************** # get color legend for 'densityLUT' in view 'renderView1'
vLUTColorBar = GetScalarBar(vLUT, renderView1) # Properties modified on vLUTColorBar
vLUTColorBar.AutoOrient = 0
vLUTColorBar.RangeLabelFormat = '%.2f'
## legend orientation
vLUTColorBar.Orientation = 'Horizontal' ## legend normalized position
vLUTColorBar.Position = [0.3, 0.2] # change label color to 'black'
vLUTColorBar.LabelColor = [1.0, 1.0, 1.0] # change titile color to 'black'
vLUTColorBar.TitleColor = [1.0, 1.0, 1.0]
# *************** # set active source
SetActiveSource(transientcase) # current camera placement for renderView1
# current camera placement for renderView1
renderView1.CameraPosition = [-0.3656950276430585, -0.000908563692513454, 0.21027125790890924]
renderView1.CameraFocalPoint = [-0.3656950276430585, -0.000908563692513454, 0.0]
renderView1.CameraParallelScale = 0.25006857916835856 # save screenshot
SaveScreenshot('/home/kaiming/Documents/ZJU_Projects/Jet/paraview/tem/v_%s.png' %(Num+1), layout=viewLayout1, magnification=1, quality=100) #### saving camera placements for all active views # current camera placement for renderView1
# current camera placement for renderView1
renderView1.CameraPosition = [-0.3656950276430585, -0.000908563692513454, 0.21027127790890924]
renderView1.CameraFocalPoint = [-0.3656950276430585, -0.000908563692513454, 0.0]
renderView1.CameraParallelScale = 0.25006857916835856
#### uncomment the following to render all views
# RenderAllViews()
# alternatively, if you want to write images, you can use SaveScreenshot(...).
**
11 theory
12 Video
12.1 Ignition of a turbulent methane jet
(fuel=70% CH4 and 30% air in volume), ignited by an electrical spark (100mJ, 400 micro-second, electrode gap: 1mm). Isosurface of equivalence ratio = 1 (blue) and of mass fraction of H2O (Y=0.5) colored by the temperature. Author: G. Lacaze Credit: CERFACS
14 reseach groups
Turbulence and Combustion Group, Cornell Uni. College of Engineering,
15 How to
- 3D video
- Q-criteria
15.1 3D video
software: Paraview
15.1.1 steps
- record all commands
tool/start traces
References: exercise 3.1 creating a Python script trace, tutorial guide
- get an image
a. slip the Computational domain b. change background to white
c. save an image
Reference:
- get multiple images with Python scripts
60 time steps
- image >> video
15.1.2 Reference video
Bryn Noel Ubald- An instrumented turbine blade – Another unique perspective https://www.youtube.com/watch?v=JKJnkYFyskw&index=7&list=PLpzImLbDbsyCrFS2fXlyaiFXb87JdZpm-&pbjreload=10
15.1.3 change contour variable
#### import the simple module from the paraview from paraview.simple import * #### disable automatic camera reset on 'Show' paraview.simple.DisableFirstRenderCameraReset()
transientcase = EnSightReader(CaseFileName='/home/kaiming/Documents/ZJUProjects/Jet/data/transient.case') transientcase.PointArrays = ['density', 'v', 'pressure', 'temperature']
renderView1 = GetActiveViewOrCreate('RenderView')
densityLUT = GetColorTransferFunction('density')
transientcaseDisplay = Show(transientcase, renderView1)
transientcaseDisplay.ColorArrayName = ['POINTS', 'density'] transientcaseDisplay.LookupTable = densityLUT transientcaseDisplay.GlyphType = 'Arrow' transientcaseDisplay.ScalarOpacityUnitDistance = 0.0016420380639339577
renderView1.ResetCamera()
transientcaseDisplay.SetScalarBarVisibility(renderView1, True)
densityPWF = GetOpacityTransferFunction('density')
ColorBy(transientcaseDisplay, ('POINTS', 'v'))
transientcaseDisplay.RescaleTransferFunctionToDataRange(True)
transientcaseDisplay.SetScalarBarVisibility(renderView1, True)
vLUT = GetColorTransferFunction('v')
vPWF = GetOpacityTransferFunction('v')
#### saving camera placements for all active views
renderView1.CameraPosition = [-0.21849990739250558, 0.0, 0.9661907958485202] renderView1.CameraFocalPoint = [-0.21849990739250558, 0.0, 0.0] renderView1.CameraParallelScale = 0.25006857916835856
- change contour variable from 'density' to 'v'
ColorBy(slice1Display, ('POINTS', 'v'))
slice1Display.RescaleTransferFunctionToDataRange(True)
slice1Display.SetScalarBarVisibility(renderView1, True)
vLUT = GetColorTransferFunction('v')
vPWF = GetOpacityTransferFunction('v')
#### saving camera placements for all active views
renderView1.CameraPosition = [-0.24175098022185249, 0.11823180090490217, 1.098500283147858]
renderView1.CameraFocalPoint = [-0.20832480931184155, 0.12646538877612318, 0.00125895591456612]
renderView1.CameraViewUp = [8.169175204111794e-05, 0.9999718249271369, 0.007506176013726962]
renderView1.CameraParallelScale = 0.23481544622305758#### uncomment the following to render all views
16 Results
inlet pressure, T, density, ρ
- 3D video similar to
- Q-criteria
- Turbulent BL, shear layer
17 Script FAQ
17.1 camera placement
renderView1.CameraPosition = [-0.22126314316421933, 0.12646846135388234, 1.0978252757245606]
renderView1.CameraFocalPoint = [-0.2082859046961596, 0.12646846135388234, 0.00012075157365905824]
renderView1.CameraParallelScale = 0.23481544622305758
left figure:
renderView1.CameraPosition = [-0.21849990739250558, 0.0, 2.0711157783058827 ]
Right figure:
renderView1.CameraPosition = [-0.21849990739250558, 0.0, 1.1690908629767092 ]
as seen in the above figure, the smaller is z value , the bigger is the figure
17.2 To load the EnSight files using the transient.case
script
## create a new 'EnSight Reader'
transientcase = EnSightReader(CaseFileName='/home/kaiming/Documents/ZJU_Projects/Jet/transient.case')
transientcase.PointArrays = ['density', 'v', 'pressure', 'temperature']
#### import the simple module from the paraview from paraview.simple import * #### disable automatic camera reset on 'Show' paraview.simple.DisableFirstRenderCameraReset()
transientcase = EnSightReader(CaseFileName='/home/kaiming/Documents/ZJUProjects/Jet/data/transient.case') transientcase.PointArrays = ['v', 'density', 'pressure', 'temperature']
renderView1 = GetActiveViewOrCreate('RenderView')
densityLUT = GetColorTransferFunction('density')
transientcaseDisplay = Show(transientcase, renderView1)
transientcaseDisplay.ColorArrayName = ['POINTS', 'density'] transientcaseDisplay.LookupTable = densityLUT transientcaseDisplay.GlyphType = 'Arrow' transientcaseDisplay.ScalarOpacityUnitDistance = 0.0016420380639339577
renderView1.ResetCamera()
transientcaseDisplay.SetScalarBarVisibility(renderView1, True)
densityPWF = GetOpacityTransferFunction('density')
#### saving camera placements for all active views
renderView1.CameraPosition = [-0.21849990739250558, 0.0, 0.9661907958485202] renderView1.CameraFocalPoint = [-0.21849990739250558, 0.0, 0.0] renderView1.CameraParallelScale = 0.25006857916835856
#### uncomment the following to render all views
#+ENDSRC
17.3 NameError: name 'slice1Display1' is not defined
Traceback (most recent call last):
solution:
assign active view
to renderView1
renderView1 = GetActiveViewOrCreate('RenderView')
17.4 View
renderView1 = GetActiveViewOrCreate('RenderView')
renderView1.Background =[1,1,1]
renderView1.ViewSize = [1920, 1080]
17.5 Save screenshot
Version 1
SaveScreenshot('/home/kaiming/Documents/ZJUProjects/Jet/paraview/jet64.png', view=renderView1, ImageResolution=[1920,1080])
Version 2
SaveScreenshot('/home/kaiming/Documents/ZJUProjects/Jet/paraview/jet1.png', magnification=1, quality=100, view=renderView1)
exercise, 2.25 tutorial, V5.6
https://forgeanalytics.io/blog/saving-a-screenshot-in-paraview/ https://www.paraview.org/Wiki/ParaView/Python/Screenshot
17.6 legend
Footnotes:
DEFINITION NOT FOUND.
jet flow in a combustion chamber的更多相关文章
- Danfoss Motor - Automotive Motor: What Sensors Are There?
The Danfoss Motor states that the motor sensor control system is the heart of the entire autom ...
- Git 在团队中的最佳实践--如何正确使用Git Flow
我们已经从SVN 切换到Git很多年了,现在几乎所有的项目都在使用Github管理, 本篇文章讲一下为什么使用Git, 以及如何在团队中正确使用. Git的优点 Git的优点很多,但是这里只列出我认为 ...
- [LeetCode] Pacific Atlantic Water Flow 太平洋大西洋水流
Given an m x n matrix of non-negative integers representing the height of each unit cell in a contin ...
- 未在本地计算机上注册“Microsoft.Jet.OleDb.4.0”提供程序。解决办法
在64位服务器系统上,默认不支持Microsoft.Jet.OLEDB.4.0的驱动程序,系统默认会提示未在本地计算机上注册"Microsoft.Jet.OLEDB.4.0"的错误 ...
- BZOJ 4390: [Usaco2015 dec]Max Flow
4390: [Usaco2015 dec]Max Flow Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 177 Solved: 113[Submi ...
- 对路径的访问被拒绝,解决之后又报-未在本地计算机上注册“Microsoft.Jet.OLEDB.4.0”提供程序。
服务器环境:Server 2008 64位系统 问题:在导入Excel题录表时报错,1对路径的访问被拒绝,2未在本地计算机上注册“Microsoft.Jet.OLEDB.4.0”提供程序. 解决方案 ...
- ArcGIS制作放射状流向地图(Radial Flow Map)
流向地图火了,因为Facebook的那张著名的友邻图,抑或因为<数据可视化之美>中介绍飞行模式的航线图,总之,流向地图以它特殊的可视化形式,直观地展示事物之间的联系,尤其在展示网络流向.贸 ...
- SSIS Data Flow优化
一,数据流设计优化 数据流有两个特性:流和在内存缓冲区中处理数据,根据数据流的这两个特性,对数据流进行优化. 1,流,同时对数据进行提取,转换和加载操作 流,就是在source提取数据时,转换组件处理 ...
- Data Flow的Error Output
一,在Data Flow Task中,对于Error Row的处理通过Error Output Tab配置的. 1,操作失败的类型:Error(Conversion) 和 Truncation. 2, ...
随机推荐
- bzoj1415 [Noi2005]聪聪和可可——概率期望
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1415 看博客:http://www.cnblogs.com/Narh/p/9206642.h ...
- JeePlus:项目部署
ylbtech-JeePlus:项目部署 1.返回顶部 1. 项目部署 1 开发工具:idea/eclipse/myeclipse+ mysql/oracle+tomcat6/7/8. 下面以ecli ...
- STM32:片上Flash 操作
之前IAP时候记录过一些,今天对特定地方写又加深了印象,写与擦除都需要先unclock //读取指定地址的半字(16位数据) //faddr:读地址(此地址必须为2的倍数!!) //返回值:对应数据. ...
- MySQL - MyCat 实现读写分离
前言 MyCat是一个彻底开源的,面向企业应用开发的大数据库集群,支持事务.ACID.可以替代MySQL的加强版数据库.其功能有可以视为MySQL集群的企业级数据库,用来替代昂贵的Oracle集群.融 ...
- Rails5 Model Document
创建: 2017/06/09 更新: 2017/06/21 更新: 2017/06/23 对待未完成的追加# TODO: 更新: 2017/06/29 修正文件名db/seed.rb ---> ...
- Android 性能优化(1)性能工具之「 lint 」 :Improving Your Code with lint:优化代码
Improving Your Code with lint 1.See Also lint (reference) Using Android Annotations In addition to t ...
- 295 Find Median from Data Stream 数据流的中位数
中位数是排序后列表的中间值.如果列表的大小是偶数,则没有中间值,此时中位数是中间两个数的平均值.示例:[2,3,4] , 中位数是 3[2,3], 中位数是 (2 + 3) / 2 = 2.5设计一个 ...
- kali中的APT软件包处理工具(apt-get)、Debian软件包管理器(dpkg)、源代码压缩和Nessus安装实用指南
写在前面的话 能看懂此博客的朋友,深信你有一定的Kali基础了. 使用APT软件包处理工具(apt-get).Debian软件包管理器(dpkg)来维护.升级和安装自定义及第三方应用程序 APT软件包 ...
- ImmutableJS
引用大神的一句话:(具体是谁自己问度娘) Shared mutable state is the root of all evil(共享的可变状态是万恶之源) -- Pete Hunt JavaS ...
- dede其他栏目页的logo没有完整显示怎么办?
在首页完全没有问题,可是点击关于我们.联系我们.加入我们的时候logo图标是缺失的,这时候怎么办? 其实这个是css样式的问题,只要找到相对应页面的css,改一下他们的宽就可以了,如果高不够就自己调整 ...