-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steady State Heat without Time Dependence is Broken #19
Comments
From the error message, it's probably trying to construct the julia> s = symbolic_discretize(pdesys, discretization)[1];
JuliaSimCompiler: generate_system
julia> ss = structural_simplify(s);
julia> NonlinearProblem(structural_simplify(s), rand(length(states(ss))))
NonlinearProblem with uType Vector{Float64}. In-place: true
u0: 12-element Vector{Float64}:
0.5658693983716057
0.730452210930952
0.7999093647009754
0.34068068695778175
0.6066626175654133
0.49832174589693123
0.985735570069928
0.10313229637404808
0.5761788103850009
0.019531876564822248
0.4600618070405691
0.5048377501152175
julia> length(states(s))
121 |
Afraid that this isn't the case: simpsys = structural_simplify(sys)
if tspan === nothing
add_metadata!(get_metadata(sys), sys)
return prob = NonlinearProblem(simpsys, ones(length(simpsys.states));
discretization.kwargs..., kwargs...) |
Digging a bit further |
I thought you said you were on latest? |
I meant |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://docs.sciml.ai/MethodOfLines/dev/tutorials/heatss/ seems to be broken with the latest versions of the packages.
The last working versions we could figure out were:
cc @ChrisRackauckas
The text was updated successfully, but these errors were encountered: