Jesse Chan
Jesse Chan
OrdinaryDiffEq.jl has an issue with ArrayPartitions constructed from nested arrays of StaticArrays. The following MWE ```julia using StaticArrays, StructArrays using RecursiveArrayTools using OrdinaryDiffEq u1 = StructArray{SVector{2, Float64}}(ntuple(x -> x *...
I'd like to just auto-indent a `.jl` file without applying any other changes.
```julia using OrdinaryDiffEq using StaticArrays, StructArrays using Logging: global_logger using TerminalLoggers: TerminalLogger global_logger(TerminalLogger()) u0 = VectorOfArray([ones(4),2*ones(4)]) # works for VectorOfArray u0 = StructArray{SVector{2,Float64}}((ones(4),2*ones(4))) # does not work for StructArray array...
I'm finding that storing Q as a `VectorOfArray` with underlying array of arrays storage works `Q = VectorOfArray([randn(5),randn(5)])` but using an underlying `SVector` format doesn't. `Q = VectorOfArray([randn(5),randn(5)])` Is this...
PR for discussion and progress on parabolic terms in Trixi.
Use Sutherland's law to get the molecular and thermal diffusivity in CompressibleNavierStokesDiffusion2D. _Originally posted by @sloede in https://github.com/trixi-framework/Trixi.jl/pull/1156#discussion_r939605318_
If there is an easy way to remove the temporary storage, I suggest to give it a try - if not, record it for later. _Originally posted by @sloede in...
This modifies `SemidiscretizationHyperbolicParabolic` to accept a "combined" type with `EquationsHyperbolicParabolic`, which is then passed into the initial condition. There main downside is that now if we wish to use an...
There are some functions with signature `function_name!(cache, …)` where `cache` is passed in as an output argument. This makes the code more confusing, since modifying a field of cache makes...
As usual, I am a big fan of self-descriptive names, i.e., `inverse_jacobian` and `inverse_wq` (or `inverse_whatevergoodnamethereis`) 😬 _Originally posted by @sloede in https://github.com/trixi-framework/Trixi.jl/pull/1029#discussion_r782217403_