Blame view

GUI/SW1/SRC/UTP.cpp 26.8 KB
886c558b   Steve Greedy   SACAMOS Public Re...
1
2
3
4
5
6
/////////////////////////////////////////////////////////////////////////////////
//
// This file is part of SACAMOS, cable models for EMI simulations in SPICE.
// It was developed by the University of Nottingham and the Netherlands Aerospace
// Centre (NLR) for ESA under contract number 4000112765/14/NL/HK.
//
2a0d305e   Steve Greedy   Modifications to ...
7
// Copyright (C) 2015 - 2018 University of Nottingham
886c558b   Steve Greedy   SACAMOS Public Re...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//
// SACAMOS is free software: you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the Free Software
// Foundation, either version 3 of the License, or (at your option) any later
// version.
//
// SACAMOS is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for more details.
//
// A copy of the GNU General Public License version 3 can be found in the
// file GNU_GPL_v3 in the root or at <http://www.gnu.org/licenses/>.
//
// wxWidgets is currently licenced under the "wxWindows Library Licence".
// A copy of the wxWindows Library Licence, Version 3.1 can be found in the file
// wxWindows_Library_Licence_v3-1 in the root or at:
// <https://www.wxwidgets.org/about/licence/>
//
// The University of Nottingham can be contacted at: ggiemr@nottingham.ac.uk
//
// File Contents:
//
// NAME
//     UTP.cpp
//
// DESCRIPTION
//     GUI for the construction of cable_spec file for cable type: Unshielded Twisted Pair
//
// AUTHOR(S)
//     Steve Greedy
//
/////////////////////////////////////////////////////////////////////////////////
#include "UTP.h"

//(*InternalHeaders(UTP)
#include <wx/settings.h>
#include <wx/intl.h>
#include <wx/string.h>
//*)

//(*IdInit(UTP)
const long UTP::ID_STATICTEXT1 = wxNewId();
const long UTP::ID_TEXTCTRL1 = wxNewId();
const long UTP::ID_STATICTEXT2 = wxNewId();
const long UTP::ID_TEXTCTRL2 = wxNewId();
const long UTP::ID_STATICTEXT4 = wxNewId();
const long UTP::ID_TEXTCTRL4 = wxNewId();
const long UTP::ID_STATICTEXT3 = wxNewId();
const long UTP::ID_TEXTCTRL3 = wxNewId();
const long UTP::ID_STATICTEXT5 = wxNewId();
const long UTP::ID_TEXTCTRL5 = wxNewId();
const long UTP::ID_PANEL2 = wxNewId();
const long UTP::ID_STATICTEXT11 = wxNewId();
const long UTP::ID_TEXTCTRL11 = wxNewId();
const long UTP::ID_STATICTEXT12 = wxNewId();
const long UTP::ID_STATICTEXT13 = wxNewId();
const long UTP::ID_STATICTEXT14 = wxNewId();
const long UTP::ID_CHECKBOX1 = wxNewId();
886c558b   Steve Greedy   SACAMOS Public Re...
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const long UTP::ID_PANEL3 = wxNewId();
const long UTP::ID_NOTEBOOK1 = wxNewId();
const long UTP::ID_STATICTEXT15 = wxNewId();
const long UTP::ID_CHECKBOX2 = wxNewId();
const long UTP::ID_STATICTEXT17 = wxNewId();
const long UTP::ID_COMBOBOX1 = wxNewId();
const long UTP::ID_STATICTEXT16 = wxNewId();
const long UTP::ID_CHECKBOX3 = wxNewId();
const long UTP::ID_BUTTON1 = wxNewId();
const long UTP::ID_BUTTON2 = wxNewId();
const long UTP::ID_BUTTON3 = wxNewId();
const long UTP::ID_PANEL1 = wxNewId();
//*)

BEGIN_EVENT_TABLE(UTP,wxDialog)
	//(*EventTable(UTP)
	//*)
END_EVENT_TABLE()

UTP::UTP(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size)
{
	//(*Initialize(UTP)
	wxBoxSizer* BoxSizer4;
	wxStaticBoxSizer* StaticBoxSizer2;
886c558b   Steve Greedy   SACAMOS Public Re...
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
	wxFlexGridSizer* FlexGridSizer3;
	wxFlexGridSizer* FlexGridSizer5;
	wxFlexGridSizer* FlexGridSizer2;
	wxBoxSizer* BoxSizer2;
	wxBoxSizer* BoxSizer1;
	wxFlexGridSizer* FlexGridSizer6;
	wxStaticBoxSizer* StaticBoxSizer1;
	wxFlexGridSizer* FlexGridSizer1;
	wxBoxSizer* BoxSizer3;

	Create(parent, wxID_ANY, _("SACAMOS: TWISTED PAIR MODEL"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE, _T("wxID_ANY"));
	FlexGridSizer1 = new wxFlexGridSizer(0, 2, 0, 0);
	StaticBoxSizer1 = new wxStaticBoxSizer(wxVERTICAL, this, _("Twisted Pair Parameters"));
	FlexGridSizer2 = new wxFlexGridSizer(0, 1, 0, 0);
	BoxSizer1 = new wxBoxSizer(wxHORIZONTAL);
	StaticText1 = new wxStaticText(this, ID_STATICTEXT1, _("Cable Name"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT1"));
	BoxSizer1->Add(StaticText1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	TextCtrl1 = new wxTextCtrl(this, ID_TEXTCTRL1, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL1"));
	BoxSizer1->Add(TextCtrl1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	FlexGridSizer2->Add(BoxSizer1, 1, wxALL|wxEXPAND, 5);
	BoxSizer3 = new wxBoxSizer(wxHORIZONTAL);
	Notebook1 = new wxNotebook(this, ID_NOTEBOOK1, wxDefaultPosition, wxDefaultSize, 0, _T("ID_NOTEBOOK1"));
	Panel2 = new wxPanel(Notebook1, ID_PANEL2, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("ID_PANEL2"));
	FlexGridSizer3 = new wxFlexGridSizer(0, 2, 0, 0);
	StaticText2 = new wxStaticText(Panel2, ID_STATICTEXT2, _("Conductor Radius (m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT2"));
	FlexGridSizer3->Add(StaticText2, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	TextCtrl2 = new wxTextCtrl(Panel2, ID_TEXTCTRL2, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL2"));
	FlexGridSizer3->Add(TextCtrl2, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	StaticText4 = new wxStaticText(Panel2, ID_STATICTEXT4, _("Dielectric Radius (m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT4"));
	FlexGridSizer3->Add(StaticText4, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	TextCtrl4 = new wxTextCtrl(Panel2, ID_TEXTCTRL4, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL4"));
	FlexGridSizer3->Add(TextCtrl4, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	StaticText3 = new wxStaticText(Panel2, ID_STATICTEXT3, _("Conductor Separation (m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT3"));
	FlexGridSizer3->Add(StaticText3, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	TextCtrl3 = new wxTextCtrl(Panel2, ID_TEXTCTRL3, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL3"));
	FlexGridSizer3->Add(TextCtrl3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	StaticText5 = new wxStaticText(Panel2, ID_STATICTEXT5, _("Conductor Conductivity (S/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT5"));
	FlexGridSizer3->Add(StaticText5, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	TextCtrl5 = new wxTextCtrl(Panel2, ID_TEXTCTRL5, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL5"));
	FlexGridSizer3->Add(TextCtrl5, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	Panel2->SetSizer(FlexGridSizer3);
	FlexGridSizer3->Fit(Panel2);
	FlexGridSizer3->SetSizeHints(Panel2);
	Panel3 = new wxPanel(Notebook1, ID_PANEL3, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("ID_PANEL3"));
	BoxSizer4 = new wxBoxSizer(wxVERTICAL);
	FlexGridSizer5 = new wxFlexGridSizer(0, 2, 0, 0);
	StaticText11 = new wxStaticText(Panel3, ID_STATICTEXT11, _("Dielectric Permittivity"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT11"));
	FlexGridSizer5->Add(StaticText11, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	TextCtrl11 = new wxTextCtrl(Panel3, ID_TEXTCTRL11, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL11"));
	FlexGridSizer5->Add(TextCtrl11, 1, wxALL|wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL, 5);
	StaticText12 = new wxStaticText(Panel3, ID_STATICTEXT12, _("Or"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT12"));
	FlexGridSizer5->Add(StaticText12, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	StaticText13 = new wxStaticText(Panel3, ID_STATICTEXT13, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT13"));
	FlexGridSizer5->Add(StaticText13, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	StaticText14 = new wxStaticText(Panel3, ID_STATICTEXT14, _("Frequency Dependant Model"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT14"));
	FlexGridSizer5->Add(StaticText14, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	CheckBox1 = new wxCheckBox(Panel3, ID_CHECKBOX1, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX1"));
	CheckBox1->SetValue(false);
	FlexGridSizer5->Add(CheckBox1, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	BoxSizer4->Add(FlexGridSizer5, 1, wxALL|wxALIGN_CENTER_HORIZONTAL, 5);
886c558b   Steve Greedy   SACAMOS Public Re...
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
	Panel3->SetSizer(BoxSizer4);
	BoxSizer4->Fit(Panel3);
	BoxSizer4->SetSizeHints(Panel3);
	Notebook1->AddPage(Panel2, _("General"), false);
	Notebook1->AddPage(Panel3, _("Material"), false);
	BoxSizer3->Add(Notebook1, 1, wxALL|wxEXPAND, 5);
	FlexGridSizer2->Add(BoxSizer3, 1, wxALL|wxEXPAND, 5);
	FlexGridSizer6 = new wxFlexGridSizer(0, 2, 0, 0);
	StaticText15 = new wxStaticText(this, ID_STATICTEXT15, _("Use Laplace"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT15"));
	FlexGridSizer6->Add(StaticText15, 0, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	CheckBox2 = new wxCheckBox(this, ID_CHECKBOX2, _("Yes"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX2"));
	CheckBox2->SetValue(false);
	FlexGridSizer6->Add(CheckBox2, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	StaticText17 = new wxStaticText(this, ID_STATICTEXT17, _("View Mesh"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT17"));
	FlexGridSizer6->Add(StaticText17, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	ComboBox1 = new wxComboBox(this, ID_COMBOBOX1, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, 0, 0, wxDefaultValidator, _T("ID_COMBOBOX1"));
	FlexGridSizer6->Add(ComboBox1, 1, wxALL, 5);
	StaticText16 = new wxStaticText(this, ID_STATICTEXT16, _("Refine Laplace Mesh"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT16"));
	FlexGridSizer6->Add(StaticText16, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	CheckBox3 = new wxCheckBox(this, ID_CHECKBOX3, _("Yes"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX3"));
	CheckBox3->SetValue(false);
	CheckBox3->Disable();
	FlexGridSizer6->Add(CheckBox3, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
	FlexGridSizer2->Add(FlexGridSizer6, 2, wxALL|wxEXPAND, 5);
	StaticBoxSizer1->Add(FlexGridSizer2, 0, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
	BoxSizer2 = new wxBoxSizer(wxHORIZONTAL);
	Button1 = new wxButton(this, ID_BUTTON1, _("SAVE"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON1"));
	BoxSizer2->Add(Button1, 1, wxALL|wxALIGN_BOTTOM, 5);
	Button2 = new wxButton(this, ID_BUTTON2, _("BUILD"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON2"));
	BoxSizer2->Add(Button2, 1, wxALL|wxALIGN_BOTTOM, 5);
	Button3 = new wxButton(this, ID_BUTTON3, _("CLOSE"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON3"));
	BoxSizer2->Add(Button3, 1, wxALL|wxALIGN_BOTTOM, 5);
	StaticBoxSizer1->Add(BoxSizer2, 1, wxALL|wxEXPAND, 5);
	FlexGridSizer1->Add(StaticBoxSizer1, 1, wxALL|wxEXPAND, 5);
	StaticBoxSizer2 = new wxStaticBoxSizer(wxHORIZONTAL, this, _("Cross Section"));
	Panel1 = new wxPanel(this, ID_PANEL1, wxDefaultPosition, wxSize(500,500), wxTAB_TRAVERSAL, _T("ID_PANEL1"));
	Panel1->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
	Panel1->SetToolTip(_("Double Click to Reset Schematic"));
	StaticBoxSizer2->Add(Panel1, 1, wxALL|wxALIGN_TOP, 5);
	FlexGridSizer1->Add(StaticBoxSizer2, 1, wxALL|wxALIGN_TOP|wxALIGN_CENTER_HORIZONTAL, 5);
	SetSizer(FlexGridSizer1);
	FlexGridSizer1->Fit(this);
	FlexGridSizer1->SetSizeHints(this);

	Connect(ID_TEXTCTRL2,wxEVT_COMMAND_TEXT_UPDATED,(wxObjectEventFunction)&UTP::OnTextCtrl2Text);
	Connect(ID_TEXTCTRL4,wxEVT_COMMAND_TEXT_UPDATED,(wxObjectEventFunction)&UTP::OnTextCtrl4Text);
	Connect(ID_TEXTCTRL3,wxEVT_COMMAND_TEXT_UPDATED,(wxObjectEventFunction)&UTP::OnTextCtrl3Text);
	Connect(ID_TEXTCTRL5,wxEVT_COMMAND_TEXT_UPDATED,(wxObjectEventFunction)&UTP::OnTextCtrl5Text);
	Connect(ID_TEXTCTRL11,wxEVT_COMMAND_TEXT_UPDATED,(wxObjectEventFunction)&UTP::OnTextCtrl11Text);
	Connect(ID_CHECKBOX1,wxEVT_COMMAND_CHECKBOX_CLICKED,(wxObjectEventFunction)&UTP::OnCheckBox1Click);
886c558b   Steve Greedy   SACAMOS Public Re...
201
202
203
204
205
206
207
208
209
	Connect(ID_NOTEBOOK1,wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING,(wxObjectEventFunction)&UTP::OnNotebook1PageChanging);
	Connect(ID_COMBOBOX1,wxEVT_COMMAND_COMBOBOX_SELECTED,(wxObjectEventFunction)&UTP::OnComboBox1Selected);
	Connect(ID_CHECKBOX3,wxEVT_COMMAND_CHECKBOX_CLICKED,(wxObjectEventFunction)&UTP::OnCheckBox3Click);
	Connect(ID_BUTTON1,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&UTP::OnButton1Click);
	Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&UTP::OnButton2Click);
	Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&UTP::OnButton3Click);
	Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&UTP::OnPanel1Paint,0,this);
	Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&UTP::OnPanel1LeftDClick,0,this);
	Panel1->Connect(wxEVT_MOUSEWHEEL,(wxObjectEventFunction)&UTP::OnPanel1MouseWheel,0,this);
2a0d305e   Steve Greedy   Modifications to ...
210
	Connect(wxID_ANY,wxEVT_INIT_DIALOG,(wxObjectEventFunction)&UTP::OnInit);
dd86ff43   Steve Greedy   Updates to SW1
211
	Connect(wxEVT_PAINT,(wxObjectEventFunction)&UTP::OnPaint);
886c558b   Steve Greedy   SACAMOS Public Re...
212
	//*)
2a0d305e   Steve Greedy   Modifications to ...
213
214
215
216
217
218
219
}

UTP::~UTP()
{
	//(*Destroy(UTP)
	//*)
}
886c558b   Steve Greedy   SACAMOS Public Re...
220

2a0d305e   Steve Greedy   Modifications to ...
221
222
void UTP::OnInit(wxInitDialogEvent& event)
{
886c558b   Steve Greedy   SACAMOS Public Re...
223
224
225
226
    TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&UTP::OnHighlightSchematic, this);
    TextCtrl3->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&UTP::OnHighlightSchematic, this);
    TextCtrl4->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&UTP::OnHighlightSchematic, this);
    TextCtrl5->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&UTP::OnHighlightSchematic, this);
886c558b   Steve Greedy   SACAMOS Public Re...
227
228
229
230
    TextCtrl11->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&UTP::OnHighlightSchematic, this);
    CheckBox1->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&UTP::OnHighlightSchematic, this);
}

886c558b   Steve Greedy   SACAMOS Public Re...
231

dd86ff43   Steve Greedy   Updates to SW1
232
233
234
235
236
void UTP::OnPaint(wxPaintEvent& event)
{
    if (EDIT_EXISTING==true) EditExistingCable();
}

886c558b   Steve Greedy   SACAMOS Public Re...
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
void UTP::SetPathToMOD(wxString Path, wxString Name)
{
    pathToMOD << Path;
    MODname << Name;
}

void UTP::OnButton1Click(wxCommandEvent& event)
{
    int IsError = 0;

    wxString fileName = TextCtrl1->GetValue();

    TextCtrl1->SetBackgroundColour(wxColor(255,255,255));

    if (fileName == "")
    {
        wxMessageBox("Please Specify a Cable Name" , _("Missing Cable Name"));
        return;
    }

    check_is_empty(TextCtrl2, &IsError);
    check_is_empty(TextCtrl3, &IsError);
    check_is_empty(TextCtrl4, &IsError);
    check_is_empty(TextCtrl5, &IsError);

2a0d305e   Steve Greedy   Modifications to ...
262
    if (!CheckBox1->GetValue())
886c558b   Steve Greedy   SACAMOS Public Re...
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
    {
        check_is_empty(TextCtrl11, &IsError);
    }

    if (IsError ==1)
    {
        return;
    }

    if ( IsError == 1)
    {
        wxMessageBox("Please fix highlighted errors" , _("Non numeric entry"));
        return;
    }

    WriteCableFile (fileName);

    Button1->Disable();
}

void UTP::OnCheckBox1Click(wxCommandEvent& event)
{
    TextCtrl11->Disable();
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
286
287
288

    FD_ESR *winFD_ESR = new FD_ESR(this);

dd86ff43   Steve Greedy   Updates to SW1
289
290
    //winFD_ESR->formtype = 1;

d475f4d6   Steve Greedy   SW1 Update to v1.0.1
291
292
    if ( winFD_ESR->ShowModal() == wxID_OK )
    {
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
293
294
295
296
297
298
        FD_ESR6 = winFD_ESR->TextCtrl6->GetValue();
        FD_ESR7 = winFD_ESR->TextCtrl7->GetValue();
        FD_ESR8 = winFD_ESR->TextCtrl8->GetValue();
        FD_ESR9 = winFD_ESR->TextCtrl9->GetValue();
        FD_ESR10= winFD_ESR->TextCtrl10->GetValue();

dd86ff43   Steve Greedy   Updates to SW1
299
300
        FD_Default = winFD_ESR->CheckBox1->GetValue();

d475f4d6   Steve Greedy   SW1 Update to v1.0.1
301
302
303
304
305
        FD_ORDER = winFD_ESR->TextCtrl11->GetValue();
        FD_lin   = winFD_ESR->RadioButton1->GetValue();
        FD_Fmin  = winFD_ESR->TextCtrl12->GetValue();
        FD_Fmax  = winFD_ESR->TextCtrl12->GetValue();
        FD_Num   = winFD_ESR->TextCtrl12->GetValue();
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
306
307
308
    }
    winFD_ESR->Destroy();

886c558b   Steve Greedy   SACAMOS Public Re...
309
310
311
312
313
}

void UTP::OnButton2Click(wxCommandEvent& event)
{
    //clean up directory
2a0d305e   Steve Greedy   Modifications to ...
314
    clean_temp_files(); // in case any mesh files lurk
886c558b   Steve Greedy   SACAMOS Public Re...
315
316
317

    //CABLE BUIDER
    wxString fileName = TextCtrl1->GetValue();
2a0d305e   Steve Greedy   Modifications to ...
318
    wxString command_line;
886c558b   Steve Greedy   SACAMOS Public Re...
319

1bcf33cb   Steve Greedy   Modifications to ...
320
321
    wxString separator(wxFileName::GetPathSeparator());

886c558b   Steve Greedy   SACAMOS Public Re...
322
    std::stringstream stream;
1bcf33cb   Steve Greedy   Modifications to ...
323
324
325

    stream  <<"." + separator
            << "cable_model_builder"
886c558b   Steve Greedy   SACAMOS Public Re...
326
            << " "
1bcf33cb   Steve Greedy   Modifications to ...
327
            << ".." + separator + MODname + separator + "CABLE" + separator
886c558b   Steve Greedy   SACAMOS Public Re...
328
329
            << fileName ;

2a0d305e   Steve Greedy   Modifications to ...
330
331
332
    command_line << stream.str().c_str();

    wxExecute (command_line);
886c558b   Steve Greedy   SACAMOS Public Re...
333
334
335
336
337
338
339
340
341
342
343

    ifstream runStatus;

    // Display Run Status
    RUN_STATUS *run_status = new RUN_STATUS(this);
    run_status->ShowModal();

    Button1->Enable();

    if (CheckBox2->GetValue())
    {
dd86ff43   Steve Greedy   Updates to SW1
344
345
        wxString pattern (("*.msh.vtk")) ;

886c558b   Steve Greedy   SACAMOS Public Re...
346
347
348
349
350
        wxString file;

        ComboBox1->Clear();

        file = wxFindFirstFile(pattern);
dd86ff43   Steve Greedy   Updates to SW1
351

886c558b   Steve Greedy   SACAMOS Public Re...
352
353
354
        while ( !file.empty())
        {
                wxString meshfile = file;
dd86ff43   Steve Greedy   Updates to SW1
355
356
357
358
359
                size_t extindex = meshfile.find_last_of (".");

                meshfile  = meshfile.substr(0, extindex);

                extindex = meshfile.find_last_of (".");
886c558b   Steve Greedy   SACAMOS Public Re...
360
361
362

                meshfile  = meshfile.substr(0, extindex);

dd86ff43   Steve Greedy   Updates to SW1
363
364
                meshfile = meshfile.substr(2,meshfile.length());

886c558b   Steve Greedy   SACAMOS Public Re...
365
                ComboBox1->Append(meshfile);
886c558b   Steve Greedy   SACAMOS Public Re...
366

dd86ff43   Steve Greedy   Updates to SW1
367
368
                file = wxFindNextFile();
        }
886c558b   Steve Greedy   SACAMOS Public Re...
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
        CheckBox3->Enable();
    }
}

void UTP::OnButton3Click(wxCommandEvent& event)
{
    //clean up directory
    clean_temp_files();

    Close();
}

void UTP::OnTextCtrl2Text(wxCommandEvent& event)
{
    int IsError = 0;
    check_is_numeric_list(TextCtrl2, &IsError);
    check_is_positive (TextCtrl2, &IsError);
}

void UTP::OnTextCtrl3Text(wxCommandEvent& event)
{
    int IsError = 0;
    check_is_numeric_list(TextCtrl3, &IsError);
    check_is_positive (TextCtrl3, &IsError);

    double value_tb3, value_tb4;
    wxString contents_tb3, contents_tb4;

    contents_tb3 = TextCtrl3->GetValue();
    contents_tb4 = TextCtrl4->GetValue();

    contents_tb3.ToDouble(&value_tb3);
    contents_tb4.ToDouble(&value_tb4);

    if (value_tb3 <= (value_tb4 + value_tb4))
    {
        TextCtrl3->SetBackgroundColour(wxColor(255,153,153));
        TextCtrl3->SetFocus();
        IsError = 1;
    }
}

void UTP::OnTextCtrl4Text(wxCommandEvent& event)
{
    int IsError = 0;
    check_is_numeric_list(TextCtrl4, &IsError);
    check_is_positive (TextCtrl4, &IsError);
    check_is_less_than(TextCtrl4, TextCtrl2, &IsError);
}

void UTP::OnTextCtrl5Text(wxCommandEvent& event)
{
    int IsError = 0;
    check_is_numeric_list(TextCtrl5, &IsError);
    check_is_positive (TextCtrl5, &IsError);
}

void UTP::OnTextCtrl11Text(wxCommandEvent& event)
{
    int IsError = 0;
    check_is_numeric_list(TextCtrl11, &IsError);
}

886c558b   Steve Greedy   SACAMOS Public Re...
432
433
434
435
436
void UTP::WriteCableFile (wxString fileName)
{

    ofstream cableFile;

1bcf33cb   Steve Greedy   Modifications to ...
437
438
439
    wxString separator(wxFileName::GetPathSeparator());

    wxString fullFileName = pathToMOD + separator + "CABLE" + separator + fileName + ".cable_spec";
886c558b   Steve Greedy   SACAMOS Public Re...
440
441
442
443
444
445
446

    cableFile.open (fullFileName);

    if (cableFile.is_open())
    {
        // minimum requirements for type UTP
        cableFile <<"# MOD_cable_lib_dir \n";
1bcf33cb   Steve Greedy   Modifications to ...
447
        cableFile <<".." << separator << MODname << separator << "CABLE" << separator <<"\n";
886c558b   Steve Greedy   SACAMOS Public Re...
448
449
450
451
452
453
454
455
456
457
458
459
        cableFile <<"Twisted_pair\n";
        cableFile <<"2 \t#number of conductors \n";
        cableFile <<"4 \t#number of parameters \n";

        cableFile << TextCtrl2->GetValue() <<" \t# parameter 1: conductor radius  (m)\n";
        cableFile << TextCtrl3->GetValue() <<" \t# parameter 2: conductor separation  (m)\n";
        cableFile << TextCtrl4->GetValue() <<" \t# parameter 3: dielectric radius (m)\n";
        cableFile << TextCtrl5->GetValue() <<" \t# parameter 4: inner conductor electric conductivity (m)\n";
        cableFile << "1 \t# number of frequency dependent parameters\n";

        if (CheckBox1->GetValue()){
            cableFile << "# Dielectric relative permittivity model follows\n";
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
460
461
462
463
464
            cableFile << FD_ESR6 <<"\t # w normalisation constant\n";
            cableFile << FD_ESR7 <<"\t # a order, a coefficients follow below\n";
            cableFile << FD_ESR8 <<"\n";
            cableFile << FD_ESR9 <<"\t # b order, b coefficients follow below\n";
            cableFile << FD_ESR10 <<"\n";
886c558b   Steve Greedy   SACAMOS Public Re...
465
466
467
468
469
470
471
472
473
474
475
476
        }

        else{
            cableFile << "\t# Dielectric relative permittivity model follows\n";
            cableFile << "1.0 \t# w normalisation constant\n";
            cableFile << "0 \t# a order, a coefficients follow below\n";
            cableFile << TextCtrl11->GetValue()<<"\n";
            cableFile << "0 \t# b order, b coefficients follow below\n";
            cableFile << "1.0\n";
        }
    }

dd86ff43   Steve Greedy   Updates to SW1
477
    if (!FD_Default){
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
478
479
480
481

        cableFile << FD_ORDER <<"\t # order for filter fitting\n";
        if (FD_lin)
        {
dd86ff43   Steve Greedy   Updates to SW1
482
            cableFile << "lin   # frequency range type for filter fitting type (lin or dB)\n";
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
483
484
485
        }
        else
        {
dd86ff43   Steve Greedy   Updates to SW1
486
            cableFile << "log   # frequency range type for filter fitting type (lin or dB)\n";
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
487
        }
dd86ff43   Steve Greedy   Updates to SW1
488
        cableFile << FD_Fmin <<" "<< FD_Fmax <<" "<< FD_Num <<"\t # fmin fmax number_of_frequencies for filter fitting\n";
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
489
490
    }

886c558b   Steve Greedy   SACAMOS Public Re...
491
492
493
494
495
496
497
498
499
500
501
502
    if (CheckBox2->GetValue())
    {
        cableFile << "use_laplace\n";
    }
    else
    {
        cableFile << "no_laplace\n";
    }


    if (CheckBox3->GetValue())
    {
dd86ff43   Steve Greedy   Updates to SW1
503
        cableFile << "laplace_surface_mesh_constant\n";
886c558b   Steve Greedy   SACAMOS Public Re...
504
        cableFile << MESH_PARAM2 <<"\n";
886c558b   Steve Greedy   SACAMOS Public Re...
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671

        CheckBox3 ->SetValue(false);
    }

    cableFile.close();
}

void UTP::OnPanel1Paint(wxPaintEvent& event)
{
    utpSchematic();
}

void UTP::utpSchematic()
{
    int size_h, size_v;
    Panel1->GetSize(&size_h, &size_v );

    wxClientDC dc(Panel1);
    dc.Clear();

    // Draw centre lines
    dc.SetPen( wxPen( wxColor(224,224,224),1 , wxDOT_DASH) );
    dc.DrawLine( 0, size_v/2, size_h,size_v/2 );
    dc.DrawLine( size_h/2, 0, size_h/2, size_v);

    dc.SetTextForeground(*wxBLUE);
    dc.DrawText("General Twinax Cable", 10, 15);

    float conductor_radius, dielectric_radius;

    conductor_radius = 0.06 * size_h;
    dielectric_radius = 0.075 * size_h;

    dc.SetPen( wxPen( wxColor(192,192,192),1 ) );
    dc.SetBrush(wxBrush(wxColor(224,224,224), wxFDIAGONAL_HATCH));
    dc.DrawCircle( wxPoint(size_h/2,size_v/2+(0.1*size_v)), dielectric_radius );

    dc.SetPen( wxPen( wxColor(192,192,192),1 ) );
    dc.SetBrush(wxBrush(wxColor(224,224,224), wxFDIAGONAL_HATCH));
    dc.DrawCircle( wxPoint(size_h/2,size_v/2-(0.1*size_v)), dielectric_radius );

    dc.SetPen( wxPen( wxColor(192,192,192),1 ) );
    dc.SetBrush(wxBrush(wxColor(224,224,224), wxSOLID));
    dc.DrawCircle( wxPoint(size_h/2,size_v/2+(0.1*size_v)), conductor_radius );

    dc.SetPen( wxPen( wxColor(192,192,192),1 ) );
    dc.SetBrush(wxBrush(wxColor(224,224,224), wxSOLID));
    dc.DrawCircle( wxPoint(size_h/2,size_v/2-(0.1*size_v)), conductor_radius );
}

void UTP::OnHighlightSchematic(wxCommandEvent& event)
{
    utpSchematic();

    int ID = event.GetId();
    event.Skip(true);

    int size_h, size_v;
    Panel1->GetSize(&size_h, &size_v );

    float conductor_radius, dielectric_radius;

    dielectric_radius = 0.075 * size_h;
    conductor_radius = 0.06 * size_h;

    float x, y;

    wxClientDC dc(Panel1);

    wxPoint arrowHead[3];

    if ( ID == ID_TEXTCTRL2)
    {
        x = conductor_radius * 0.7071;
        y = conductor_radius * 0.7071;
        dc.SetPen(wxPen(wxColor(51,51,255), 3));
        dc.SetBrush(wxBrush(wxColor(51,51,255), wxSOLID));
        dc.DrawCircle( wxPoint(size_h/2,size_v/2-(0.1*size_v)),4 );
        dc.DrawLine( size_h/2,size_v/2-(0.1*size_v), size_h/2+x,size_v/2-(0.1*size_v)-y );

        arrowHead[0] = wxPoint(size_h/2+x,size_v/2-(0.1*size_v)-y);
        arrowHead[1] = wxPoint(size_h/2+x-5,size_v/2-(0.1*size_v)-y);
        arrowHead[2] = wxPoint(size_h/2+x,size_v/2-(0.1*size_v)-y+5);
        dc.DrawPolygon(WXSIZEOF(arrowHead), arrowHead);
    }

    if ( ID == ID_TEXTCTRL3)
    {
        dc.SetPen(wxPen(wxColor(51,51,255), 3));
        dc.SetBrush(wxBrush(wxColor(51,51,255), wxSOLID));
        dc.DrawLine( size_h/2,size_v/2-(0.1*size_v),  size_h/2,size_v/2+(0.1*size_v) );

        arrowHead[0] = wxPoint(size_h/2,size_v/2-(0.1*size_v));
        arrowHead[1] = wxPoint(size_h/2+5,size_v/2-(0.1*size_v)+5);
        arrowHead[2] = wxPoint(size_h/2-5,size_v/2-(0.1*size_v)+5);
        dc.DrawPolygon(WXSIZEOF(arrowHead), arrowHead);

        arrowHead[0] = wxPoint(size_h/2,size_v/2+(0.1*size_v));
        arrowHead[1] = wxPoint(size_h/2+5,size_v/2+(0.1*size_v)-5);
        arrowHead[2] = wxPoint(size_h/2-5,size_v/2+(0.1*size_v)-5);
        dc.DrawPolygon(WXSIZEOF(arrowHead), arrowHead);
    }

    if ( ID == ID_TEXTCTRL4)
    {
        x = dielectric_radius * 0.7071;
        y = dielectric_radius * 0.7071;
        dc.SetPen(wxPen(wxColor(51,51,255), 3));
        dc.SetBrush(wxBrush(wxColor(51,51,255), wxSOLID));
        dc.DrawCircle( wxPoint(size_h/2,size_v/2-(0.1*size_v)),4 );
        dc.DrawLine( size_h/2,size_v/2-(0.1*size_v), size_h/2-x,size_v/2-(0.1*size_v)-y );

        arrowHead[0] = wxPoint(size_h/2-x,size_v/2-(0.1*size_v)-y);
        arrowHead[1] = wxPoint(size_h/2-x+5,size_v/2-(0.1*size_v)-y);
        arrowHead[2] = wxPoint(size_h/2-x,size_v/2-(0.1*size_v)-y+5);
        dc.DrawPolygon(WXSIZEOF(arrowHead), arrowHead);
    }

    if ( ID == ID_TEXTCTRL5)
    {
        dc.SetPen( wxPen( wxColor(51,51,255),1 ) );
        dc.SetBrush(wxBrush(wxColor(51,51,255), wxSOLID));
        dc.DrawCircle( wxPoint(size_h/2,size_v/2+(0.1*size_v)), conductor_radius );

        dc.SetPen( wxPen( wxColor(51,51,255),1 ) );
        dc.SetBrush(wxBrush(wxColor(51,51,255), wxSOLID));
        dc.DrawCircle( wxPoint(size_h/2,size_v/2-(0.1*size_v)), conductor_radius );
    }

    if ( ID == ID_TEXTCTRL11 || ID == ID_CHECKBOX1)
    {
        dc.SetPen( wxPen( wxColor(51,51,255),1 ) );
        dc.SetBrush(wxBrush(wxColor(51,51,255), wxFDIAGONAL_HATCH));
        dc.DrawCircle( wxPoint(size_h/2,size_v/2+(0.1*size_v)), dielectric_radius );

        dc.SetPen( wxPen( wxColor(51,51,255),1 ) );
        dc.SetBrush(wxBrush(wxColor(51,51,255), wxFDIAGONAL_HATCH));
        dc.DrawCircle( wxPoint(size_h/2,size_v/2-(0.1*size_v)), dielectric_radius );

        dc.SetPen( wxPen( wxColor(192,192,192),1 ) );
        dc.SetBrush(wxBrush(wxColor(224,224,224), wxSOLID));
        dc.DrawCircle( wxPoint(size_h/2,size_v/2+(0.1*size_v)), conductor_radius );

        dc.SetPen( wxPen( wxColor(192,192,192),1 ) );
        dc.SetBrush(wxBrush(wxColor(224,224,224), wxSOLID));
        dc.DrawCircle( wxPoint(size_h/2,size_v/2-(0.1*size_v)), conductor_radius );
    }
}



void UTP::OnPanel1LeftDClick(wxMouseEvent& event)
{
    utpSchematic();
}

void UTP::OnNotebook1PageChanging(wxNotebookEvent& event)
{
    utpSchematic();
}

void UTP::OnCheckBox3Click(wxCommandEvent& event)
{
    if (CheckBox3->GetValue())
    {
        MESH_PARAM *winMESH_PARAM = new MESH_PARAM(this);

dd86ff43   Steve Greedy   Updates to SW1
672
673
674
675
        winMESH_PARAM->TextCtrl1->Disable();
        winMESH_PARAM->TextCtrl3->Disable();
        winMESH_PARAM->TextCtrl4->Disable();

886c558b   Steve Greedy   SACAMOS Public Re...
676
677
        if ( winMESH_PARAM->ShowModal() == wxID_OK )
        {
886c558b   Steve Greedy   SACAMOS Public Re...
678
            MESH_PARAM2 = winMESH_PARAM->TextCtrl2->GetValue();
886c558b   Steve Greedy   SACAMOS Public Re...
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
        }
        winMESH_PARAM->Destroy();
    }
    WriteCableFile (TextCtrl1->GetValue());
}

void UTP::OnPanel1MouseWheel(wxMouseEvent& event)
{
    wxString fileName = TextCtrl1->GetValue();

    wxClientDC dc(Panel1);
    dc.Clear();
    zoom_mesh(Panel1,fileName);
}

void UTP::OnComboBox1Selected(wxCommandEvent& event)
{
    wxString meshToView;
    meshToView<<ComboBox1->GetValue();
    draw_mesh(Panel1,meshToView);
}
dd86ff43   Steve Greedy   Updates to SW1
700
701
702
703
704

void UTP::EditExistingCable()
{
    Close();
}