chore: sync project state and current artifacts
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
//! Tests circuits from 2 up to the maximum of 5 circuits (circuit IDs 0-4).
|
||||
|
||||
use entropyk_components::{
|
||||
Component, ComponentError, ConnectedPort, JacobianBuilder, ResidualVector, SystemState,
|
||||
Component, ComponentError, ConnectedPort, JacobianBuilder, ResidualVector, StateSlice,
|
||||
};
|
||||
use entropyk_core::ThermalConductance;
|
||||
use entropyk_solver::{CircuitId, System, ThermalCoupling, TopologyError};
|
||||
@@ -17,7 +17,7 @@ struct RefrigerantMock {
|
||||
impl Component for RefrigerantMock {
|
||||
fn compute_residuals(
|
||||
&self,
|
||||
_state: &SystemState,
|
||||
_state: &StateSlice,
|
||||
residuals: &mut ResidualVector,
|
||||
) -> Result<(), ComponentError> {
|
||||
for r in residuals.iter_mut().take(self.n_equations) {
|
||||
@@ -28,7 +28,7 @@ impl Component for RefrigerantMock {
|
||||
|
||||
fn jacobian_entries(
|
||||
&self,
|
||||
_state: &SystemState,
|
||||
_state: &StateSlice,
|
||||
_jacobian: &mut JacobianBuilder,
|
||||
) -> Result<(), ComponentError> {
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user