diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-07-25 01:11:17 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-07-25 01:11:17 -0300 |
commit | c7ef9a883031c68506357f9ef1b1a0b79c79f4da (patch) | |
tree | 06646fb4511030daa7fb6426dfab9dc2413a7253 /Project/ElementFormBase.h | |
parent | 4f434e4a1cccce69e4b680e4734df52244d3a30b (diff) | |
download | PSP.git-c7ef9a883031c68506357f9ef1b1a0b79c79f4da.tar.gz PSP.git-c7ef9a883031c68506357f9ef1b1a0b79c79f4da.tar.xz PSP.git-c7ef9a883031c68506357f9ef1b1a0b79c79f4da.zip |
Motor integration with PF
Newton bug fixed
Newton inertia implemented
Gauss-Newton implemented
Diffstat (limited to 'Project/ElementFormBase.h')
-rw-r--r-- | Project/ElementFormBase.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Project/ElementFormBase.h b/Project/ElementFormBase.h index 734681c..c8fe7f0 100644 --- a/Project/ElementFormBase.h +++ b/Project/ElementFormBase.h @@ -771,6 +771,7 @@ class IndMotorFormBase : public wxDialog wxStaticText* m_staticTextReactivePower; wxTextCtrl* m_textCtrlReactivePower; wxChoice* m_choiceReactivePower; + wxCheckBox* m_checkBoxComputeQ; wxCheckBox* m_checkBoxUseMachinePower; wxPanel* m_panelStability; wxCheckBox* m_checkBoxPlotIndMachine; @@ -806,6 +807,7 @@ class IndMotorFormBase : public wxDialog wxButton* m_ButtonCancel; protected: + virtual void OnCalcQInPFClick(wxCommandEvent& event) { event.Skip(); } virtual void OnCheckboxUseCageFactorClick(wxCommandEvent& event) { event.Skip(); } virtual void OnStabilityButtonClick(wxCommandEvent& event) { event.Skip(); } virtual void OnOKButtonClick(wxCommandEvent& event) { event.Skip(); } @@ -823,6 +825,7 @@ class IndMotorFormBase : public wxDialog wxStaticText* GetStaticTextReactivePower() { return m_staticTextReactivePower; } wxTextCtrl* GetTextCtrlReactivePower() { return m_textCtrlReactivePower; } wxChoice* GetChoiceReactivePower() { return m_choiceReactivePower; } + wxCheckBox* GetCheckBoxComputeQ() { return m_checkBoxComputeQ; } wxCheckBox* GetCheckBoxUseMachinePower() { return m_checkBoxUseMachinePower; } wxPanel* GetPanelGeneral() { return m_panelGeneral; } wxCheckBox* GetCheckBoxPlotIndMachine() { return m_checkBoxPlotIndMachine; } |