-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppFileTemplate.cs
421 lines (377 loc) · 11.3 KB
/
AppFileTemplate.cs
1
2
3
4
5
6
7
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
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
using Polenter.Serialization;
using RcDesign;
using RcDesign.InteractionDiagram;
using RcDesign.Material;
using RcDesign.Section;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnitsNet.Extensions.NumberToLength;
using UnitsNet.Extensions.NumberToArea;
using System.ComponentModel;
using OxyPlot;
using System.Collections.ObjectModel;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
namespace EtkilesimDiyagram
{
public static class Extensions
{
public static IList<T> Clone<T>(this IList<T> listToClone) where T : ICloneable
{
return listToClone.Select(item => (T)item.Clone()).ToList();
}
}
[Serializable]
public class AppFileTemplate : INotifyPropertyChanged
{
DesignCodes code;
public DesignCodes Code
{
get { return code; }
set
{
if (code == value)
return;
code = value;
OnPropertyChanged("Code");
}
}
double _fc;
public double fc
{
get { return _fc; }
set
{
if (_fc == value)
return;
_fc = value;
OnPropertyChanged("fc");
}
}
double _fy;
public double fy
{
get { return _fy; }
set
{
if (_fy == value)
return;
_fy = value;
OnPropertyChanged("fy");
}
}
double _h;
public double h
{
get { return _h; }
set
{
if (_h == value)
return;
_h = value;
OnPropertyChanged("h");
}
}
double _b;
public double b
{
get { return _b; }
set
{
if (_b == value)
return;
_b = value;
OnPropertyChanged("b");
}
}
double phiA;
public double PhiA
{
get { return phiA; }
set
{
if (phiA == value)
return;
phiA = value;
OnPropertyChanged("PhiA");
}
}
double phiB;
public double PhiB
{
get { return phiB; }
set
{
if (phiB == value)
return;
phiB = value;
OnPropertyChanged("PhiB");
}
}
double phiC;
public double PhiC
{
get { return phiC; }
set
{
if (phiC == value)
return;
phiC = value;
OnPropertyChanged("PhiC");
}
}
ObservableCollection<ReinforcingBar> reinforcingBars;
public ObservableCollection<ReinforcingBar> ReinforcingBars
{
get { return reinforcingBars; }
set
{
if (reinforcingBars == value)
return;
reinforcingBars = value;
OnPropertyChanged("ReinforcingBars");
}
}
ObservableCollection<Load> loads;
public ObservableCollection<Load> Loads
{
get { return loads; }
set
{
if (loads == value)
return;
loads = value;
OnPropertyChanged("Loads");
}
}
string title;
public string Title
{
get { return title; }
set
{
if (title == value)
return;
title = value;
OnPropertyChanged("Title");
}
}
string reportTitle;
public string ReportTitle
{
get { return reportTitle; }
set
{
if (reportTitle == value)
return;
reportTitle = value;
OnPropertyChanged("ReportTitle");
}
}
string subTitle;
public string SubTitle
{
get { return subTitle; }
set
{
if (subTitle == value)
return;
subTitle = value;
OnPropertyChanged("SubTitle");
}
}
bool showAllDiagram;
public bool ShowAllDiagram
{
get { return showAllDiagram; }
set
{
if (showAllDiagram == value)
return;
showAllDiagram = value;
OnPropertyChanged("ShowAllDiagram");
}
}
bool showRightDiagram;
public bool ShowRightDiagram
{
get { return showRightDiagram; }
set
{
if (showRightDiagram == value)
return;
showRightDiagram = value;
OnPropertyChanged("ShowRightDiagram");
}
}
bool showLeftDiagram;
public bool ShowLeftDiagram
{
get { return showLeftDiagram; }
set
{
if (showLeftDiagram == value)
return;
showLeftDiagram = value;
OnPropertyChanged("ShowLeftDiagram");
}
}
bool showNominalDiagram;
public bool ShowNominalDiagram
{
get { return showNominalDiagram; }
set
{
if (showNominalDiagram == value)
return;
showNominalDiagram = value;
OnPropertyChanged("ShowNominalDiagram");
}
}
bool showGridLines;
public bool ShowGridLines
{
get { return showGridLines; }
set
{
if (showGridLines == value)
return;
showGridLines = value;
OnPropertyChanged("ShowGridLines");
}
}
bool showLoads;
public bool ShowLoads
{
get { return showLoads; }
set
{
if (showLoads == value)
return;
showLoads = value;
OnPropertyChanged("ShowLoads");
}
}
bool showTitle;
public bool ShowTitle
{
get { return showTitle; }
set
{
if (showTitle == value)
return;
showTitle = value;
OnPropertyChanged("ShowTitle");
}
}
public double Pmax { get; set; }
public double Pmin { get; set; }
public double ActualPmax { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
public static AppFileTemplate CreateTemplate()
{
AppFileTemplate dsy = new AppFileTemplate();
dsy.Code = DesignCodes.TS500;
dsy.fc = 25.00;
dsy.fy = 420.0;
dsy.b = 100.0;
dsy.h = 35.0;
dsy.ReinforcingBars = new ObservableCollection<ReinforcingBar>
{
new ReinforcingBar(15.00, 8.5),
new ReinforcingBar(25.00, 28.5)
};
dsy.Loads = new ObservableCollection<Load>
{
new Load(20.0, 200.0),
new Load(-20.0, 200.0)
};
dsy.PhiA = dsy.PhiB = dsy.PhiC = 1.0;
dsy.Title = "Etkileşim Diyagram";
dsy.SubTitle = "(h=35 cm)";
dsy.ReportTitle = "";
dsy.ShowNominalDiagram = true;
dsy.ShowLeftDiagram = false;
dsy.ShowRightDiagram = false;
dsy.ShowAllDiagram = true;
dsy.ShowGridLines = true;
dsy.ShowLoads = true;
dsy.ShowTitle = true;
return dsy;
}
public static void Serialize(AppFileTemplate obj, string fileName)
{
SharpSerializer serializer = new SharpSerializer();
serializer.Serialize(obj, fileName);
}
public static AppFileTemplate DeSerialize(string fileName)
{
SharpSerializer serializer = new SharpSerializer();
return
(AppFileTemplate)(serializer.Deserialize(fileName));
}
public Concrete Beton()
{
return new Concrete(Code, fc);
}
public Steel DonatiCeligi()
{
return new Steel(Code, fy);
}
public RectangularSection MetrikKesitGeometri()
{
return new RectangularSection(b.Centimeters().Meters, h.Centimeters().Meters,
8.5.Centimeters().Meters, 6.5.Centimeters().Meters);
}
public List<ReinforcingBar> MetrikDonatiKatmanBilgi()
{
List<ReinforcingBar> ReinforcingBarsMetric = ReinforcingBars.Clone() as List<ReinforcingBar>;
ReinforcingBarsMetric.ForEach(item => item.As = item.As.SquareCentimeters().SquareMeters);
ReinforcingBarsMetric.ForEach(item => item.di = item.di.Centimeters().Meters);
return ReinforcingBarsMetric;
}
public PlotModel GetModel()
{
EtkilesimDiyagramHazirlama diagram = new EtkilesimDiyagramHazirlama();
diagram.ShowAllDiagram = ShowAllDiagram;
diagram.ShowRightDiagram = ShowRightDiagram;
diagram.ShowLeftDiagram = ShowLeftDiagram;
diagram.ShowNominalDiagram = ShowNominalDiagram;
diagram.ShowGridLines = ShowGridLines;
diagram.ShowLoads = ShowLoads;
diagram.Code = Code;
diagram.Title = Title;
diagram.SubTitle = SubTitle;
diagram.ShowTitle = ShowTitle;
diagram.SectionGeometry = MetrikKesitGeometri();
diagram.StrengthReductionFactor = new StrengthReductionFactor(PhiA, PhiB, PhiC);
diagram.Concrete = Beton();
diagram.Steel = DonatiCeligi();
diagram.ReinforcingBars = MetrikDonatiKatmanBilgi();
diagram.Loads = (List<Load>)Loads.Clone();
PlotModel model = diagram.CreateModel();
Pmax = diagram.Pmax;
Pmin = diagram.Pmin;
ActualPmax = diagram.ActualPmax;
return model;
}
public List<InteractionDiagramItem> GetItems()
{
EtkilesimDiyagramHazirlama diagram = new EtkilesimDiyagramHazirlama();
diagram.Code = Code;
diagram.SectionGeometry = MetrikKesitGeometri();
diagram.StrengthReductionFactor = new StrengthReductionFactor(PhiA, PhiB, PhiC);
diagram.Concrete = Beton();
diagram.Steel = DonatiCeligi();
diagram.ReinforcingBars = MetrikDonatiKatmanBilgi();
return diagram.CreateInteractionDiagram();
}
}
}