Skip to content

Commit

Permalink
v1.0. MAJOR VERSION. This is the first released version with great pe…
Browse files Browse the repository at this point in the history
…rformance improvement. Currently support BUS, LINE, TRANSFORMER, FIXED_SHUNT, GENERATOR, WT_GENERATOR, PV_UNIT, ENERGY_STORAGE, EQUIVALENT_DEVICE, etc.
  • Loading branch information
changgang committed Feb 12, 2020
1 parent 0679861 commit 500ec5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Currently, it supports powerflow solution and dynamic simulation. In the future,
The data format of STEPS is improved based on PSS/E raw and dyr data format. BPA dat format is also supported.
You are encourage to join us for further development.

## Major versions
V0.0: Initialize project on March 21, 2018
V1.0: Improved performance version on Feb. 12, 2020. Support synchronous generator, wind turbine generator, (basic) PV unit, HVDC, static and dynamic loads.

## Dependency
STEPS depends on CSparse, CXSparse, CppTest, and RapidJSON. The CXSparse is modified to avoid confliction between CSparse and CXSparse by changing prefix cs_ and CS_ to cxs_ and CSX_ .
Though BLAS, CBLAS, and other SuiteSparse codes are included in the package, they will be removed in future.
Expand Down
2 changes: 0 additions & 2 deletions code/source/basic/utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,6 @@ double steps_asin(double x)
double steps_fast_asin(double x)
{
return asin(x);
if(x==0.0)
return 0.0;

double y = fabs(x);
if(y<1.0)
Expand Down

0 comments on commit 500ec5e

Please sign in to comment.