Codota Logo
EsgDetailedTwoWindingTransformer$Tap
Code IndexAdd Codota to your IDE (free)

How to use
EsgDetailedTwoWindingTransformer$Tap
in
eu.itesla_project.eurostag.network

Best Java code snippets using eu.itesla_project.eurostag.network.EsgDetailedTwoWindingTransformer$Tap (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
BufferedReader b =
  • Codota IconInputStream in;new BufferedReader(new InputStreamReader(in))
  • Codota IconReader in;new BufferedReader(in)
  • Codota IconFile file;new BufferedReader(new FileReader(file))
  • Smart code suggestions by Codota
}
origin: itesla/ipst

private EsgDetailedTwoWindingTransformer.Tap createTap(TwoWindingsTransformer twt, int iplo, double rho, double dr, double dx,
                            double dephas, double rate, EsgGeneralParameters parameters) {
  double nomiU2 = twt.getTerminal2().getVoltageLevel().getNominalV();
  double uno1 = nomiU2 / rho;
  double uno2 = nomiU2;
  //...mTrans.getR() = Get the nominal series resistance specified in Ω at the secondary voltage side.
  double zb2 = Math.pow(nomiU2, 2) / parameters.getSnref();
  double rpu2 = dr / zb2;  //...total line resistance  [p.u.](Base snref)
  double xpu2 = dx / zb2;  //...total line reactance   [p.u.](Base snref)
  //...leakage impedance [%] (base rate)
  double ucc;
  if (xpu2 < 0) {
    ucc = xpu2 * 100 * rate / parameters.getSnref();
  } else {
    double zpu2 = Math.hypot(rpu2, xpu2);
    ucc = zpu2 * 100 * rate / parameters.getSnref();
  }
  return new EsgDetailedTwoWindingTransformer.Tap(iplo, dephas, uno1, uno2, ucc);
}
origin: itesla/ipst

recordWriter.addValue(tap.getIplo(), 22, 25);
recordWriter.addValue(tap.getUno1(), 27, 34);
recordWriter.addValue(tap.getUno2(), 36, 43);
recordWriter.addValue(tap.getUcc(), 45, 52);
recordWriter.addValue(tap.getDephas(), 54, 61);
recordWriter.newLine();
origin: itesla/ipst

    rate, pcu, pfer, esat, ktpnom, ktap8, lvNodeName,
    voltr, Float.NaN, Float.NaN, RegulatingMode.VOLTAGE);
newTranfo.getTaps().add(new EsgDetailedTwoWindingTransformer.Tap(firstPlot, 0.0F, esgNode.getVbase() * vB, vBase, ucc));
newTranfo.getTaps().add(new EsgDetailedTwoWindingTransformer.Tap(lastPlot, 0.0F, esgNode.getVbase() * vT, vBase, ucc));
networkEch.addDetailedTwoWindingTransformer(newTranfo);
eu.itesla_project.eurostag.networkEsgDetailedTwoWindingTransformer$Tap

Most used methods

  • <init>
  • getDephas
  • getIplo
  • getUcc
  • getUno1
  • getUno2

Popular in Java

  • Reading from database using SQL prepared statement
  • getApplicationContext (Context)
  • putExtra (Intent)
  • getSystemService (Context)
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now