Skip to content

Commit 6110f12

Browse files
authored
Merge pull request #36 from opusonesolutions/document_units
Update README To Document Units
2 parents d61a134 + 74c6a3b commit 6110f12

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ from carsons import CarsonsEquations, calculate_impedance
5454

5555
class Line:
5656
geometric_mean_radius: {
57-
'A': geometric_mean_radius_A
57+
'A': geometric_mean_radius_A in meters
5858
...
5959
}
6060
resistance: {
61-
'A': per-length resistance of conductor A in ohms
61+
'A': per-length resistance of conductor A in ohms/meters
6262
...
6363
}
6464
wire_positions: {
@@ -105,42 +105,42 @@ object.
105105
from carsons import (ConcentricNeutralCarsonsEquations,
106106
calculate_impedance)
107107

108-
class Line:
108+
class Cable:
109109
resistance: {
110-
'A': per-length resistance of conductor A in ohms
110+
'A': per-length resistance of conductor A in ohm/meters
111111
...
112112
}
113113
geometric_mean_radius: {
114-
'A': geometric_mean_radius_A
114+
'A': geometric mean radius of conductor A in meters
115115
...
116116
}
117117
wire_positions: {
118-
'A': (x, y) cross-sectional position of the conductor in meters
118+
'A': (x, y) cross-sectional position of conductor A in meters
119119
...
120120
}
121121
phases: {'A', 'NA', ... }
122122
neutral_strand_gmr: {
123-
'NA': neutral_strand_gmr_A
123+
'NA': neutral strand gmr of phase A in meters
124124
...
125125
}
126126
neutral_strand_resistance: {
127-
'NA': neutral_strand_resistance_A
127+
'NA': neutral strand resistance of phase A in ohm/meters
128128
...
129129
}
130130
neutral_strand_diameter: {
131-
'NA': neutral_strand_diameter_A
131+
'NA': neutral strand diameter of phase A in meters
132132
...
133133
}
134134
diameter_over_neutral: {
135-
'NA': diameter_over_neutral_A
135+
'NA': diameter over neutral of phase A in meters
136136
...
137137
}
138138
neutral_strand_count: {
139-
'NA': neutral_strand_count_A
139+
'NA': neutral strand count of phase A
140140
...
141141
}
142142

143-
line_impedance = calculate_impedance(ConcentricNeutralCarsonsEquations(Line()))
143+
cable_impedance = calculate_impedance(ConcentricNeutralCarsonsEquations(Cable()))
144144
```
145145

146146
For examples of how to use the model, see the [concentric cable

0 commit comments

Comments
 (0)