Path: blob/main/src/equations/equations_parabolic.jl
5586 views
# specify transformation of conservative variables prior to taking gradients.1# specialize this function to compute gradients e.g., of primitive variables instead of conservative2gradient_variable_transformation(::AbstractEquationsParabolic) = cons2cons34# By default, the gradients are taken with respect to the conservative variables.5# this is reflected by the type parameter `GradientVariablesConservative` in the abstract6# type `AbstractEquationsParabolic{NDIMS, NVARS, GradientVariablesConservative}`.7struct GradientVariablesConservative end89include("laplace_diffusion.jl")1011include("laplace_diffusion_entropy_variables.jl")1213include("linear_diffusion_equation.jl")1415include("compressible_navier_stokes.jl")161718