Jose Daniel Lara
Jose Daniel Lara
> @jd-lara is there any advantage to updating the RHS of a constraint on a `varon` variable instead of fixing/unfixing it? > > @alefcastelli and I think we have a...
After careful study, this issue couldn't be reproduce adequately, it's been open since 2021 and there have been a lot of changes already to the code.
Closing since this code should move to https://github.com/NREL-SIIP/StorageSystemsSimulations.jl
The precompile issue got larger by a factor of 2 with Julia 1.10
Thanks, I think we can handle these cases for some parameters and dispatch the implementation of the parameter according to parameter type and reduce the burden for the some of...
#899 will address point 1 by removing the use of ParameterJuMP and POI all together.
IT might possible to speed up the state update in this block of code using Multithreading ```Julia function _update_system_state!(sim::Simulation, model::EmulationModel) sim_state = get_simulation_state(sim) simulation_time = get_current_time(sim) system_state = get_system_states(sim_state) store...
The problem goes away if `direct_mode` isn't used. So far I tried to reproduce in a small problem and didn't happen.
This is an interesting bug. Unexpected behavior
To provide further details if I define ```Julia function my_mul_lv!(y::Vector{Float64}, A::SparseMatrixCSC{Float64,Int64}, x::Vector{Float64}) @turbo for i in eachindex(y) # for each branch tmp = 0.0 nzrange = nzrange(A, i) # non...