summaryrefslogtreecommitdiffstats
path: root/Project/ElementFormBase.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2019-07-25 01:11:17 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2019-07-25 01:11:17 -0300
commitc7ef9a883031c68506357f9ef1b1a0b79c79f4da (patch)
tree06646fb4511030daa7fb6426dfab9dc2413a7253 /Project/ElementFormBase.h
parent4f434e4a1cccce69e4b680e4734df52244d3a30b (diff)
downloadPSP.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.h3
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; }