Skip to content

Commit

Permalink
Merge pull request #733 from ut-issl/feature/power
Browse files Browse the repository at this point in the history
battery.cppのパラメータ指定の誤りを訂正
  • Loading branch information
kouchann authored Jan 17, 2025
2 parents c0cbc24 + 57e52b7 commit 5a910c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/real/power/battery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Battery InitBAT(environment::ClockGenerator* clock_generator, int bat_id, const
initial_dod = bat_conf.ReadDouble(section_name.c_str(), "initial_dod");

double cc_charge_c_rate;
cc_charge_c_rate = bat_conf.ReadDouble(section_name.c_str(), "constant_charge_current_A_rate_C");
cc_charge_c_rate = bat_conf.ReadDouble(section_name.c_str(), "constant_charge_current_rate_C");

double cv_charge_voltage_V;
cv_charge_voltage_V = bat_conf.ReadDouble(section_name.c_str(), "constant_voltage_charge_voltage_V");
Expand Down

0 comments on commit 5a910c9

Please sign in to comment.