Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ACS
Public
Power System Simulation and Optimization
DPsim
DPsim
Commits
75e86405
Commit
75e86405
authored
Jul 17, 2019
by
Steffen Vogel
🎅🏼
Browse files
fix uninitialized values
parent
10bf372f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/MNASolver.cpp
View file @
75e86405
...
...
@@ -387,7 +387,7 @@ void MnaSolver<VarType>::steadyStateInitialization() {
Int
timeStepCount
=
0
;
Real
time
=
0
;
Real
eps
=
0.0001
;
Real
maxDiff
,
max
;
Real
maxDiff
=
0
,
max
=
0
;
Matrix
diff
;
Matrix
prevLeftSideVector
=
Matrix
::
Zero
(
2
*
mNumNodes
,
1
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment