-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSectionResults.cs
More file actions
39 lines (32 loc) · 940 Bytes
/
SectionResults.cs
File metadata and controls
39 lines (32 loc) · 940 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SectionCutter
{
class SectionResults
{
public int NumberResults { get; set; }
public string[] SCut { get; set; }
public string[] LoadCase { get; set; }
public string[] StepType { get; set; }
public double[] StepNum { get; set; }
public double[] F1 { get; set; }
public double[] F2 { get; set; }
public double[] F3 { get; set; }
public double[] M1 { get; set; }
public double[] M2 { get; set; }
public double[] M3 { get; set; }
public string LoadDirection { get; set; }
public double[] SectionLength { get; set; }
}
class TabularData
{
public double Location { get; set; }
public double Length { get; set; }
public double Shear { get; set; }
public double Moment { get; set; }
public double Axial { get; set; }
}
}