Paulms / ConservationLawsDiffEq.jl

Numeric Schemes for Conservation Laws
Other
13 stars 10 forks source link

AdaptStaticArraysCoreEx #24

Open 1069364049 opened 1 year ago

1069364049 commented 1 year ago

Hi Paul, I'm a novice to Julia and trying to solve one PDE of a physical problem. It seems that I still can't run the testing code after adding all of the packages. The error is "LoadError: ArgumentError: Package AdaptStaticArraysCoreExt does not have Adapt in its dependencies". But there's no package called AdaptStaticArraysCoreEx when I try to add that. How can I fix this problem.(Maybe this is a foolish question.) Thanks for your attention!

Paulms commented 1 year ago

Hi, unfortunately, I haven't had time to work on this package lately, so it is several versions behind the main SciML ecosystem. Since I started working on the package before Julia implemented the manifest mechanism, it is difficult to track the last dependencies' versions that worked. I plan to update the code eventually to make it functional with the latest Julia versions, but I can't promise a timeline at the moment. Unless you are experienced enough to update the dependencies and fix potential problems with the new versions, I would advise you to look for more up-to-date packages like Trixi ((https://github.com/trixi-framework/Trixi.jl) or FiniteVolumeMethod (https://discourse.julialang.org/t/ann-finitevolumemethod-jl/91395). If you are open to solving the PDE with Finite Elements, I would suggest looking into Gridap (https://gridap.github.io/Gridap.jl/stable/).

1069364049 commented 1 year ago

Hi, unfortunately, I haven't had time to work on this package lately, so it is several versions behind the main SciML ecosystem. Since I started working on the package before Julia implemented the manifest mechanism, it is difficult to track the last dependencies' versions that worked. I plan to update the code eventually to make it functional with the latest Julia versions, but I can't promise a timeline at the moment. Unless you are experienced enough to update the dependencies and fix potential problems with the new versions, I would advise you to look for more up-to-date packages like Trixi ((https://github.com/trixi-framework/Trixi.jl) or FiniteVolumeMethod (https://discourse.julialang.org/t/ann-finitevolumemethod-jl/91395). If you are open to solving the PDE with Finite Elements, I would suggest looking into Gridap (https://gridap.github.io/Gridap.jl/stable/).

Thanks! I tried lot but I find my PDEs much more complicated. I think I need to write code by myself.😩