com.farao_community.farao.data.crac_impl.OnFlowConstraintInCountryImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of farao-crac-impl Show documentation
Show all versions of farao-crac-impl Show documentation
Object model for CRAC implementation
/*
* Copyright (c) 2022, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.farao_community.farao.data.crac_impl;
import com.farao_community.farao.data.crac_api.Instant;
import com.farao_community.farao.data.crac_api.State;
import com.farao_community.farao.data.crac_api.usage_rule.OnFlowConstraintInCountry;
import com.farao_community.farao.data.crac_api.usage_rule.UsageMethod;
import com.powsybl.iidm.network.Country;
/**
* @author Peter Mitri {@literal }
*/
public class OnFlowConstraintInCountryImpl extends AbstractUsageRule implements OnFlowConstraintInCountry {
private Instant instant;
private Country country;
OnFlowConstraintInCountryImpl(Instant instant, Country country) {
super(UsageMethod.TO_BE_EVALUATED);
this.instant = instant;
this.country = country;
}
@Override
public Country getCountry() {
return country;
}
@Override
public Instant getInstant() {
return instant;
}
@Override
public UsageMethod getUsageMethod(State state) {
return state.getInstant().equals(instant) ? UsageMethod.TO_BE_EVALUATED : UsageMethod.UNDEFINED;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OnFlowConstraintInCountryImpl rule = (OnFlowConstraintInCountryImpl) o;
return super.equals(o) && rule.getInstant().equals(instant) && rule.getCountry().equals(country);
}
@Override
public int hashCode() {
return country.hashCode() * 19 + instant.hashCode() * 47;
}
}