com.powsybl.iidm.network.Network.getCaseDate()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(108)

本文整理了Java中com.powsybl.iidm.network.Network.getCaseDate()方法的一些代码示例,展示了Network.getCaseDate()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Network.getCaseDate()方法的具体详情如下:
包路径:com.powsybl.iidm.network.Network
类名称:Network
方法名:getCaseDate

Network.getCaseDate介绍

[英]Get the date that the network represents.
[中]获取网络代表的日期。

代码示例

代码示例来源:origin: itesla/ipst

public static int getDateDistanceToReference(VoltageLevel vl) {
  DateTime caseDate;
  String caseDateStr = vl.getProperties().getProperty(CASE_DATE);
  if (caseDateStr == null) {
    caseDate = vl.getSubstation().getNetwork().getCaseDate();
  } else {
    caseDate = DateTime.parse(caseDateStr);
  }
  return (int) new Duration(caseDate, vl.getSubstation().getNetwork().getCaseDate()).getStandardMinutes();
}

代码示例来源:origin: com.powsybl/powsybl-security-analysis-api

public NetworkMetadata(Network network) {
  Objects.requireNonNull(network);
  this.id = network.getId();
  this.sourceFormat = network.getSourceFormat();
  this.caseDate = network.getCaseDate();
  this.forecastDistance = network.getForecastDistance();
}

代码示例来源:origin: itesla/ipst

n.getCaseDate().toDate().getTime(), valueMapEntry.getKey().forecastDistance);

代码示例来源:origin: itesla/ipst

vl.getProperties().setProperty(CASE_DATE, network.getCaseDate().toString());
vl.getProperties().setProperty(FORECAST_DISTANCE, Integer.toString(network.getForecastDistance()));

代码示例来源:origin: itesla/ipst

private CacheManager.CacheEntry getMonthlyCacheDir(Interval interval) {
  return PlatformConfig.defaultCacheManager().newCacheEntry("uncertainties")
      .withKey(interval.toString())
      .withKey("" + network.getCaseDate().year().get() + network.getCaseDate().monthOfYear().get())
      .withKey(SCRIPTS.getVersion())
      .withKey(Float.toString(config.getPrctRisk()))
      .build();
}

代码示例来源:origin: com.powsybl/powsybl-iidm-xml-converter

writer.writeAttribute("caseDate", n.getCaseDate().toString());
writer.writeAttribute("forecastDistance", Integer.toString(n.getForecastDistance()));
writer.writeAttribute("sourceFormat", n.getSourceFormat());

代码示例来源:origin: itesla/ipst

valueMap.put(HistoDbMetaAttributeId.datetime, n.getCaseDate().toDate());
valueMap.put(HistoDbMetaAttributeId.daytime, n.getCaseDate().getMillisOfDay());
valueMap.put(HistoDbMetaAttributeId.month, n.getCaseDate().getMonthOfYear());

代码示例来源:origin: itesla/ipst

String date = String.format("%02d", n.getCaseDate().dayOfMonth().get()) + "/"
    + String.format("%02d", n.getCaseDate().getMonthOfYear()) + "/"
    + String.format("%02d", n.getCaseDate().getYearOfCentury());
String originatorName = n.getSourceFormat();
double baseMVA = defaultBaseMVA;
int year = n.getCaseDate().getYear();
String season = getSeason(n.getCaseDate().getMonthOfYear());
String caseId = n.getId();
powerSystem = new CFPFPowerSystem(date, originatorName, baseMVA, year, season, caseId);

代码示例来源:origin: com.powsybl/powsybl-cgmes-conversion

LOG.info("cgmes scenarioTime       : {}", modelScenarioTime);
LOG.info("cgmes modelCreated       : {}", modelCreated);
LOG.info("network caseDate         : {}", network.getCaseDate());
LOG.info("network forecastDistance : {}", network.getForecastDistance());
Function<PropertyBag, AbstractObjectConversion> convf;

相关文章

微信公众号

最新文章

更多