Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- Enhanced `ExtEmDataConnection` with `simulateInternal` method [#398](https://github.com/ie3-institute/simonaAPI/issues/398)
- created public interface EvcsModel based on EvModel as reference [#421](https://github.com/ie3-institute/simonaAPI/issues/421)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- created public interface EvcsModel based on EvModel as reference [#421](https://github.com/ie3-institute/simonaAPI/issues/421)
- created public interface EvcsModel [#421](https://github.com/ie3-institute/simonaAPI/issues/421)


### Changed
- Splitting up `ExtSimAdapterData` into `SetupData` and a data connection [#400](https://github.com/ie3-institute/simonaAPI/issues/400)
Expand Down
39 changes: 39 additions & 0 deletions src/main/java/edu/ie3/simona/api/data/model/ev/EvcsModel.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* © 2025. TU Dortmund University,
* Institute of Energy Systems, Energy Efficiency and Energy Economics,
* Research group Distribution grid planning and operation
*/

package edu.ie3.simona.api.data.model.ev;

import java.util.UUID;
import javax.measure.quantity.Power;
import tech.units.indriya.ComparableQuantity;

public interface EvcsModel {

/**
* @return the uuid of this evcs
*/
UUID getUuid();

/**
* @return the id of this evcs
*/
String getId();

/**
* @return the maximum AC apparent power rating of this evcs
*/
ComparableQuantity<Power> getSRatedAC();

/**
* @return the maximum DC apparent or active power rating of this evcs
*/
ComparableQuantity<Power> getPRatedDC();

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since the Evcs only has sRated, the entry for getPRatedDC can be removed. Also please change the naming of getSRatedAC to getSRated.

/**
* @return the rated power factor (cos φ) of this evcs
*/
double getCosPhiRated();
}