Home
last modified time | relevance | path

Searched refs:section (Results 1 – 19 of 19) sorted by relevance

/libCEED/examples/fluids/src/
H A Dsetupdm.c79 PetscSection section; in SetUpDM() local
80 PetscCall(DMGetLocalSection(dm, &section)); in SetUpDM()
81 PetscCall(PetscSectionSetFieldName(section, 0, "")); in SetUpDM()
84 PetscCall(PetscSectionSetComponentName(section, 0, 0, "Density")); in SetUpDM()
85 PetscCall(PetscSectionSetComponentName(section, 0, 1, "MomentumX")); in SetUpDM()
86 PetscCall(PetscSectionSetComponentName(section, 0, 2, "MomentumY")); in SetUpDM()
87 PetscCall(PetscSectionSetComponentName(section, 0, 3, "MomentumZ")); in SetUpDM()
88 PetscCall(PetscSectionSetComponentName(section, 0, 4, "TotalEnergy")); in SetUpDM()
92 PetscCall(PetscSectionSetComponentName(section, 0, 0, "Pressure")); in SetUpDM()
93 PetscCall(PetscSectionSetComponentName(section, 0, 1, "VelocityX")); in SetUpDM()
[all …]
H A Dvelocity_gradient_projection.c17 PetscSection section; in VelocityGradientProjectionCreateDM() local
28 PetscCall(DMGetLocalSection(grad_velo_proj->dm, &section)); in VelocityGradientProjectionCreateDM()
29 PetscCall(PetscSectionSetFieldName(section, 0, "")); in VelocityGradientProjectionCreateDM()
30 PetscCall(PetscSectionSetComponentName(section, 0, 0, "VelocityGradientXX")); in VelocityGradientProjectionCreateDM()
31 PetscCall(PetscSectionSetComponentName(section, 0, 1, "VelocityGradientXY")); in VelocityGradientProjectionCreateDM()
32 PetscCall(PetscSectionSetComponentName(section, 0, 2, "VelocityGradientXZ")); in VelocityGradientProjectionCreateDM()
33 PetscCall(PetscSectionSetComponentName(section, 0, 3, "VelocityGradientYX")); in VelocityGradientProjectionCreateDM()
34 PetscCall(PetscSectionSetComponentName(section, 0, 4, "VelocityGradientYY")); in VelocityGradientProjectionCreateDM()
35 PetscCall(PetscSectionSetComponentName(section, 0, 5, "VelocityGradientYZ")); in VelocityGradientProjectionCreateDM()
36 PetscCall(PetscSectionSetComponentName(section, 0, 6, "VelocityGradientZX")); in VelocityGradientProjectionCreateDM()
[all …]
H A Dgrid_anisotropy_tensor.c36 PetscSection section; in GridAnisotropyTensorProjectionSetupApply() local
40 PetscCall(DMGetLocalSection(grid_aniso_proj->dm, &section)); in GridAnisotropyTensorProjectionSetupApply()
41 PetscCall(PetscSectionSetFieldName(section, 0, "")); in GridAnisotropyTensorProjectionSetupApply()
42 PetscCall(PetscSectionSetComponentName(section, 0, 0, "KMGridAnisotropyTensorXX")); in GridAnisotropyTensorProjectionSetupApply()
43 PetscCall(PetscSectionSetComponentName(section, 0, 1, "KMGridAnisotropyTensorYY")); in GridAnisotropyTensorProjectionSetupApply()
44 PetscCall(PetscSectionSetComponentName(section, 0, 2, "KMGridAnisotropyTensorZZ")); in GridAnisotropyTensorProjectionSetupApply()
45 PetscCall(PetscSectionSetComponentName(section, 0, 3, "KMGridAnisotropyTensorYZ")); in GridAnisotropyTensorProjectionSetupApply()
46 PetscCall(PetscSectionSetComponentName(section, 0, 4, "KMGridAnisotropyTensorXZ")); in GridAnisotropyTensorProjectionSetupApply()
47 PetscCall(PetscSectionSetComponentName(section, 0, 5, "KMGridAnisotropyTensorXY")); in GridAnisotropyTensorProjectionSetupApply()
48 PetscCall(PetscSectionSetComponentName(section, 0, 6, "GridAnisotropyTensorFrobNorm")); in GridAnisotropyTensorProjectionSetupApply()
H A Ddifferential_filter.c196 PetscSection section; in DifferentialFilterSetup() local
210 PetscCall(DMGetLocalSection(diff_filter->dm_filter, &section)); in DifferentialFilterSetup()
211 PetscCall(PetscSectionSetFieldName(section, 0, "")); in DifferentialFilterSetup()
212 PetscCall(PetscSectionSetComponentName(section, 0, 0, "FilteredPhi")); in DifferentialFilterSetup()
222 PetscCall(DMGetLocalSection(diff_filter->dm_filter, &section)); in DifferentialFilterSetup()
223 …PetscCall(PetscSectionSetFieldName(section, diff_filter->field_prim_state, "Filtered Primitive Sta… in DifferentialFilterSetup()
224 PetscCall(PetscSectionSetComponentName(section, 0, DIFF_FILTER_PRESSURE, "FilteredPressure")); in DifferentialFilterSetup()
225 … PetscCall(PetscSectionSetComponentName(section, 0, DIFF_FILTER_VELOCITY_X, "FilteredVelocityX")); in DifferentialFilterSetup()
226 … PetscCall(PetscSectionSetComponentName(section, 0, DIFF_FILTER_VELOCITY_Y, "FilteredVelocityY")); in DifferentialFilterSetup()
227 … PetscCall(PetscSectionSetComponentName(section, 0, DIFF_FILTER_VELOCITY_Z, "FilteredVelocityZ")); in DifferentialFilterSetup()
[all …]
H A Dturb_spanstats.c32 PetscSection section; in CreateStatsDM() local
102 PetscCall(DMGetLocalSection(user->spanstats.dm, &section)); in CreateStatsDM()
103 PetscCall(PetscSectionSetFieldName(section, 0, "")); in CreateStatsDM()
104 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_DENSITY, "MeanDensity")); in CreateStatsDM()
105 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE, "MeanPressure")); in CreateStatsDM()
106 …PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE_SQUARED, "MeanPressureSquare… in CreateStatsDM()
107 …PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE_VELOCITY_X, "MeanPressureVel… in CreateStatsDM()
108 …PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE_VELOCITY_Y, "MeanPressureVel… in CreateStatsDM()
109 …PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE_VELOCITY_Z, "MeanPressureVel… in CreateStatsDM()
110 …PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_DENSITY_TEMPERATURE, "MeanDensityTemp… in CreateStatsDM()
[all …]
H A Ddm_utils.c317 PetscSection section; in BasisCreateFromTabulation() local
320 PetscCall(DMGetLocalSection(dm, &section)); in BasisCreateFromTabulation()
321 …PetscCall(PetscSectionGetClosurePermutation(section, (PetscObject)dm, dim, num_comp * P, &permutat… in BasisCreateFromTabulation()
/libCEED/examples/solids/
H A Delasticity.c147 PetscSection section; in main() local
148 PetscCall(DMGetLocalSection(level_dms[level], &section)); in main()
149 PetscCall(PetscSectionSetFieldName(section, 0, "Displacement")); in main()
150 PetscCall(PetscSectionSetComponentName(section, 0, 0, "DisplacementX")); in main()
151 PetscCall(PetscSectionSetComponentName(section, 0, 1, "DisplacementY")); in main()
152 PetscCall(PetscSectionSetComponentName(section, 0, 2, "DisplacementZ")); in main()
165 PetscSection section; in main() local
166 PetscCall(DMGetLocalSection(dm_diagnostic, &section)); in main()
167 PetscCall(PetscSectionSetFieldName(section, 0, "Diagnostics")); in main()
168 PetscCall(PetscSectionSetComponentName(section, 0, 0, "DisplacementX")); in main()
[all …]
H A Dindex.md229 As explained in the {ref}`common-notation` section, we denote by capital letters the reference fram…
/libCEED/julia/LibCEED.jl/
H A DREADME.md9 …jl to use this binary as described in the [Configuring LibCEED.jl](#configuring-libceedjl) section.
14 … configure LibCEED.jl as described in the [Configuring LibCEED.jl](#configuring-libceedjl) section.
/libCEED/examples/
H A Dindex.md5 This section contains a mathematical description of all examples provided with libCEED
H A DREADME.md8 For more details, please see the dedicated [documentation section](https://libceed.org/en/latest/ex…
58 …erators employed in the BPs, please see the dedicated [BPs documentation section](https://libceed.…
/libCEED/doc/sphinx/source/api/
H A Dindex.rst5 This section contains the code documentation. The subsections represent
/libCEED/examples/petsc/src/
H A Dpetscutils.c306 PetscSection section; in BasisCreateFromTabulation() local
309 PetscCall(DMGetLocalSection(dm, &section)); in BasisCreateFromTabulation()
310 …PetscCall(PetscSectionGetClosurePermutation(section, (PetscObject)dm, dim, num_comp * P, &permutat… in BasisCreateFromTabulation()
/libCEED/julia/LibCEED.jl/docs/src/
H A Dindex.md19 as described in the [Configuring LibCEED.jl](@ref) section.
26 in the [Configuring LibCEED.jl](@ref) section.
/libCEED/
H A DDoxyfile156 # doxygen will generate a detailed section even if there is only a brief
426 # type (e.g. under the Public Functions section). Set it to NO to prevent
435 # instead of on a separate page (for HTML and Man pages) or section (for LaTeX
449 # Man pages) or section (for LaTeX and RTF).
538 # which are defined in the implementation section but not in the interface are
564 # section is generated. This option has no effect if EXTRACT_ALL is enabled.
792 # will be used as the name of the layout file. See also section "Changing the
1280 # and then modify the file new_header.html. See also section "Doxygen usage"
1294 # section "Doxygen usage" for information on how to generate the default footer
1303 # See also section "Doxygen usage" for information on how to generate the style
[all …]
H A DCONTRIBUTING.md61 …ibCEED (versus creation of new features in libCEED), but see the [citing section](https://libceed.…
/libCEED/doc/sphinx/source/
H A DCONTRIBUTING.md61 …ibCEED (versus creation of new features in libCEED), but see the [citing section](https://libceed.…
/libCEED/julia/LibCEED.jl/src/
H A DCeedVector.jl267 more efficient to use the macro version `@witharray` (cf. the section on "Performance of
/libCEED/examples/fluids/
H A Dindex.md580 …l conditions are $P=1$, $\rho=1$ for the driver section and $P=0.1$, $\rho=0.125$ for the driven s…