Skip to content

Commit

Permalink
added RESGreedyWithDynamicBuffers
Browse files Browse the repository at this point in the history
  • Loading branch information
calbaker committed Jan 31, 2025
1 parent 11afa6e commit d38ff78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions fastsim-core/src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pub use crate::utils::{Pyo3Vec2Wrapper, Pyo3Vec3Wrapper, Pyo3VecBoolWrapper, Pyo
pub use crate::vehicle::cabin::{
CabinOption, LumpedCabin, LumpedCabinState, LumpedCabinStateHistoryVec,
};
pub use crate::vehicle::hev::RESGreedyWithDynamicBuffers;
pub use crate::vehicle::hvac::{
HVACOption, HVACSystemForLumpedCabin, HVACSystemForLumpedCabinAndRES,
HVACSystemForLumpedCabinAndRESState, HVACSystemForLumpedCabinAndRESStateHistoryVec,
Expand Down
1 change: 1 addition & 0 deletions fastsim-py/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ fn fastsim(_py: Python, m: &Bound<PyModule>) -> PyResult<()> {
m.add_class::<ElectricMachine>()?;
m.add_class::<ElectricMachineState>()?;
m.add_class::<ElectricMachineStateHistoryVec>()?;
m.add_class::<RESGreedyWithDynamicBuffers>()?;
m.add_class::<Cycle>()?;
m.add_class::<CycleElement>()?;
m.add_class::<Vehicle>()?;
Expand Down

0 comments on commit d38ff78

Please sign in to comment.