Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Update isone.py #1329

Open
wants to merge 29 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c3928b9
Update version.h
Jun 29, 2023
ec11733
Add support for accessing ISO New England hourly market data (#1307)
dchassin Jul 3, 2023
265940a
Add wheel install (#1310)
dchassin Jul 9, 2023
c4599e4
Add shell subcommand (#1312)
dchassin Jul 10, 2023
e1bbfdd
Update Geodata.md (#1314)
aivanova5 Jul 14, 2023
e0c538a
Fix create_meters.py implementation (#1321)
aivanova5 Jul 28, 2023
cf6901e
Update README.md (#1315)
dchassin Jul 31, 2023
20f2625
Add group tool (#1319)
dchassin Jul 31, 2023
5045e38
Update isone.py
dchassin Aug 12, 2023
45037a3
Update isone.py
dchassin Aug 12, 2023
0f7b786
Fix isony.py
dchassin Aug 12, 2023
09d7d3e
Updated pole.cpp (#1317)
AllisonBrand Sep 19, 2023
7aa7146
Update test_pole.csv (#1337)
dchassin Sep 22, 2023
b1966eb
Merge branch 'develop' into develop-fix-isone-help
dchassin Sep 22, 2023
650e62c
Add headers and source to build target (#1336)
dchassin Sep 22, 2023
89994cd
Merge branch 'develop' into develop-fix-isone-help
dchassin Sep 22, 2023
2bd1ef3
Update version.h
Jun 29, 2023
ab162fc
Add support for accessing ISO New England hourly market data (#1307)
dchassin Jul 3, 2023
3406e94
Add wheel install (#1310)
dchassin Jul 9, 2023
4c5344b
Add shell subcommand (#1312)
dchassin Jul 10, 2023
ae7f891
Update Geodata.md (#1314)
aivanova5 Jul 14, 2023
05b2a02
Fix create_meters.py implementation (#1321)
aivanova5 Jul 28, 2023
4719de9
Update README.md (#1315)
dchassin Jul 31, 2023
b6c8e43
Add group tool (#1319)
dchassin Jul 31, 2023
256a551
Updated pole.cpp (#1317)
AllisonBrand Sep 19, 2023
bbbbcb4
Update test_pole.csv (#1337)
dchassin Sep 22, 2023
c666f9d
Add headers and source to build target (#1336)
dchassin Sep 22, 2023
d00b29b
Add create_childs tool (#1335)
dchassin Sep 22, 2023
462e7ec
Merge branch 'develop' into develop-fix-isone-help
dchassin Sep 22, 2023
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
Prev Previous commit
Next Next commit
Updated pole.cpp (#1317)
Fixed the angle used in calculation of pole moment_x and moment_y  to be tilt direction instead of degree of tilt

Signed-off-by: AllisonBrand <[email protected]>
Signed-off-by: David P. Chassin <[email protected]>
AllisonBrand authored and dchassin committed Sep 22, 2023

Verified

This commit was signed with the committer’s verified signature.
hyrsky Santeri Hurnanen
commit 256a551ab709df62d1f1747681394ec17cb610c0
4 changes: 2 additions & 2 deletions module/powerflow/pole.cpp
Original file line number Diff line number Diff line change
@@ -486,8 +486,8 @@ TIMESTAMP pole::postsync(TIMESTAMP t0) ////
verbose("equipment_moment_x = %g ft*lb (moment in x-axis)", equipment_moment_x);
verbose("equipment_moment_y = %g ft*lb (moment in y-axis)", equipment_moment_y);

double pole_moment_x = pole_moment_wind*cos(wind_direction*PI/180)+pole_moment*cos(tilt_angle/180*PI);
double pole_moment_y = pole_moment_wind*sin(wind_direction*PI/180)+pole_moment*sin(tilt_angle/180*PI);
double pole_moment_x = pole_moment_wind*cos(wind_direction*PI/180)+pole_moment*cos(tilt_direction*PI/180);
double pole_moment_y = pole_moment_wind*sin(wind_direction*PI/180)+pole_moment*sin(tilt_direction*PI/180);
verbose("pole_moment_x = %g ft*lb (moment in x-axis)", pole_moment_x);
verbose("pole_moment_y = %g ft*lb (moment in y-axis)", pole_moment_y);