-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDiscrete3DHull_Numpy.py
407 lines (341 loc) · 14.3 KB
/
Discrete3DHull_Numpy.py
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
from matplotlib import pyplot as plt
# import multiprocessing
import numpy as np
# from pathos.multiprocessing import ProcessingPool as Pool
# from scipy.optimize import root, fsolve
# from mpl_toolkits.mplot3d import Axes3D
# cores = multiprocessing.cpu_count()
for loopIter in range(1):
print('This is Loop: ', loopIter)
D = 0.3 * 0.65 # meter
L, B = 0.3, 0.3
xRange = 0.20 * 2 * 0.65 # meter
yRange = 0.20 * 2 * 0.65 # meter
zUpperBound = np.maximum(D * 1.2, 0.7) # meter
zLowerBound = D * 0.2
precision = 0.003 # meter
gravity = 9.8 # m/s^2
waterDensity = 997 # kg/m^3
hullDensity = 1.1 # kg/m^3
boatThick = 1e-2 # meter
hullMeshDensity = hullDensity * np.power(precision, 3)
waterMeshDensity = waterDensity * np.power(precision, 3)
def axis2MeshPositionZ(axis):
return list(map(int, (np.array(axis) + zLowerBound) / precision))
class ballast():
weight = 0.13 # kg
axisPosition = np.array([0, 0, 0]) # meter
meshPosition = axis2MeshPositionZ(axisPosition)
axisShape = np.array([0.03*4, 0.025*1.5, 0.025*1.5]) # meter
meshShape = list(map(int, axisShape / precision))
meshVolume = meshShape[0] * meshShape[1] * meshShape[2]
meshDensity = weight / meshVolume
ballast1 = ballast()
MidIndexX = int(xRange / precision + 1)
MidIndexY = int(yRange / precision + 1)
MidIndexZ = int(zLowerBound / precision + 1)
maxZIndex = int((D + zLowerBound) / precision)
xLen = int(2 * xRange / precision + 1)
yLen = int(2 * yRange / precision + 1)
zLen = int((zLowerBound + zUpperBound) / precision + 1)
xArray = np.linspace(-xRange, xRange, xLen)
yArray = np.linspace(-yRange, yRange, yLen)
xGrid, yGrid = np.meshgrid(xArray, yArray)
zGrid = D * (np.power(2 * xGrid / L, 4) + np.power(2 * yGrid / B, 2))
hullMesh = np.zeros((xLen, yLen, zLen))
minZIndexMat = (
(np.transpose(zGrid) +
zLowerBound) /
precision).astype(
np.int)
for i in range(xLen):
for j in range(yLen):
# minZIndex = int((zGrid[j, i] + zLowerBound) / precision)
hullMesh[i, j, minZIndexMat[i, j]:maxZIndex] = 1
# hullMesh[i, j, minZIndex:minZIndex + int(boatThick / precision)] = 1
# hullMesh[i, j, maxZIndex - int(boatThick / precision):maxZIndex] = 1
def caculWeight(weightMat):
M = np.sum(weightMat)
return M
def calculCOM(weightMat):
M = caculWeight(weightMat)
xCOMPre = np.linspace(
1, xLen, xLen).dot(
np.sum(
weightMat, axis=(
2, 1)))
yCOMPre = np.linspace(
1, yLen, yLen).dot(
np.sum(
weightMat, axis=(
0, 2)))
zCOMPre = np.linspace(
1, zLen, zLen).dot(
np.sum(
weightMat, axis=(
1, 0)))
xCOM, yCOM, zCOM = [xCOMPre, yCOMPre, zCOMPre] / M
return np.array([xCOM, yCOM, zCOM]).astype(np.int)
def addBallast(weightMat, ballast1):
xCOM, yCOM, zCOM = calculCOM(weightMat)
shape = ballast1.meshShape
weightMat[int(xCOM -
shape[0] /
2):int(xCOM +
shape[0] /
2 +
1), int(yCOM -
shape[1] /
2):int(yCOM +
shape[1] /
2 +
1), int(MidIndexZ +
ballast1.meshShape[2]):int(MidIndexZ +
shape[2] +
ballast1.meshShape[2]) +
1] += ballast1.meshDensity
return weightMat
hullMesh = hullMeshDensity * hullMesh
hullWeight = caculWeight(hullMesh)
xCOM, yCOM, zCOM = calculCOM(hullMesh)
print([xCOM, yCOM, zCOM])
hullMesh = addBallast(hullMesh, ballast1)
def addMast(weightMat):
DiaMeter = 9.5e-3 # meter
Radius = DiaMeter / 2 # meter
RadiusMesh = int(Radius / precision)
Length = 0.5 # meter
Weight = 96.7e-3 # kg
Volume = np.pi * Radius * Radius * Length
Density = Weight / Volume
DensityMesh = Density * np.power(precision, 3)
xCOM, yCOM, zCOM = calculCOM(weightMat)
iArray = np.linspace(- RadiusMesh, RadiusMesh, 2 *
RadiusMesh + 1).astype(np.int)
jRadius = np.sqrt(
RadiusMesh *
RadiusMesh -
iArray *
iArray).astype(
np.int)
for i in range(iArray.shape[0]):
weightMat[iArray[i] +
xCOM, yCOM -
jRadius[i]:yCOM +
jRadius[i], int(zLowerBound /
precision):int((zLowerBound +
Length) /
precision)] = DensityMesh
return weightMat
hullMesh = addMast(hullMesh)
xCOM, yCOM, zCOM = calculCOM(hullMesh)
print([xCOM, yCOM, zCOM], '\n')
hullWeight = caculWeight(hullMesh)
DisplacementVolumeReal = hullWeight / waterDensity
DisplacementVolumeMesh = DisplacementVolumeReal / pow(precision, 3)
def fliTrans(mat):
return np.flipud(mat.transpose())
def calculDisplacementVolumeMesh(
hullMesh,
waterAngle,
waterOffset,
isFinal,
needInverse):
noWaterMesh = np.ones(
[hullMesh.shape[0], hullMesh.shape[1], hullMesh.shape[2]])
waterLineMesh = np.zeros(
[hullMesh.shape[0], hullMesh.shape[1], hullMesh.shape[2]])
rightXYArray = ((np.tan(waterAngle) *
(np.arange(yLen) *
precision -
xRange) +
yRange) /
precision +
waterOffset).astype(np.int)
rightXYArray = np.maximum(rightXYArray, 0)
if needInverse:
for i in range(yLen):
rightXY = rightXYArray[i]
noWaterMesh[:, i, rightXY:] = 0
else:
for i in range(yLen):
rightXY = rightXYArray[i]
noWaterMesh[:, i, :rightXY] = 0
unSubmergedMesh = np.logical_and(noWaterMesh, hullMesh) * hullMesh
DisplacedWaterWeight = np.sum(
np.logical_and(
np.logical_not(noWaterMesh),
hullMesh)) * waterMeshDensity
DisplacementVolume = np.sum(np.logical_and(
np.logical_not(noWaterMesh), hullMesh)) * np.power(precision, 3)
SubmergedVolume = np.sum(np.logical_and(
np.logical_not(noWaterMesh),
hullMesh)) * np.power(precision, 3)
SubmergedMesh = np.logical_and(
np.logical_not(noWaterMesh),
hullMesh) * hullMesh
if isFinal:
print('\nSubmergedVolume: ', SubmergedVolume)
print(
'Weight of Displaced Water: ',
DisplacementVolume *
waterDensity)
print('Weight of Boat: ', hullWeight)
return [
unSubmergedMesh,
SubmergedMesh,
waterLineMesh,
DisplacedWaterWeight,
noWaterMesh]
def calculBestWaterOffsetMesh(hullMesh, waterAngle, hullWeight):
lastLoss = - 1
maxIteration = 5000
waterOffsetLowerBound = - 2 * zLen
waterOffsetUpperBound = 3 * zLen
waterOffset = int((waterOffsetLowerBound + waterOffsetUpperBound) / 2)
if (waterAngle >= 0 and waterAngle < np.pi /
2) or (waterAngle >= 1.5 * np.pi and waterAngle < 2 * np.pi):
needInverse = 0
else:
needInverse = 1
for i in range(maxIteration):
print('Processed: ' +
str((i +
1) /
maxIteration *
100) +
'%' +
' Loss: ' +
str(lastLoss) +
' waterOffsetLowerBound: ' +
str(waterOffsetLowerBound) +
' waterOffsetUpperBound: ' +
str(waterOffsetUpperBound))
unSubmergedMesh, SubmergedMesh, waterLineMesh, DisplacedWaterWeight, noWaterMesh = calculDisplacementVolumeMesh(
hullMesh, waterAngle, waterOffset, False, needInverse)
thisLoss = (DisplacedWaterWeight - hullWeight) / hullWeight
if i >= maxIteration - \
1 or abs(thisLoss) < 0.01 or waterOffsetLowerBound >= waterOffsetUpperBound - 1:
unSubmergedMesh, SubmergedMesh, waterLineMesh, DisplacedWaterWeight, noWaterMesh = calculDisplacementVolumeMesh(
hullMesh, waterAngle, waterOffset, True, needInverse)
thisLoss = (DisplacedWaterWeight - hullWeight) / hullWeight
print(
'\nDone \nLoss= ',
thisLoss * 100,
'%',
'\nOffset = ',
waterOffset)
pass
return [
waterOffset,
unSubmergedMesh,
SubmergedMesh,
waterLineMesh,
thisLoss,
noWaterMesh]
else:
if thisLoss < 0 and not(needInverse):
waterOffsetLowerBound = waterOffset
waterOffset = int(
(waterOffset + waterOffsetUpperBound) / 2)
elif thisLoss < 0 and needInverse:
waterOffsetUpperBound = waterOffset
waterOffset = int(
(waterOffset + waterOffsetLowerBound) / 2)
elif thisLoss > 0 and not(needInverse):
waterOffsetUpperBound = waterOffset
waterOffset = int(
(waterOffset + waterOffsetLowerBound) / 2)
else:
waterOffsetLowerBound = waterOffset
waterOffset = int(
(waterOffset + waterOffsetUpperBound) / 2)
lastLoss = thisLoss
degreeAngle = 120 # degree
waterAngle = np.deg2rad(degreeAngle)
waterOffset, unSubmergedMesh, SubmergedMesh, waterLineMesh, Loss, noWaterMesh = calculBestWaterOffsetMesh(
hullMesh, waterAngle, hullWeight)
HullSubmergedMesh = np.logical_and(noWaterMesh < 0.5, SubmergedMesh)
[xCOB, yCOB, zCOB] = map(int, calculCOM(HullSubmergedMesh))
FBuoyancy = FGravity = hullWeight * gravity
buoyancyTorqueVector = np.cross([(yCOB - yCOM) * precision,
(zCOB - zCOM) * precision,
0],
[-FBuoyancy * np.sin(waterAngle),
FBuoyancy * np.cos(waterAngle), 0])
buoyancyTorque = buoyancyTorqueVector[2]
print(
'\nBuoyancy Torque under ',
degreeAngle,
' degrees: ',
buoyancyTorque,
' N * M\n')
print('COM: ', [xCOM, yCOM, zLen - zCOM])
print('COB: ', [xCOB, yCOB, zLen - zCOB])
if(buoyancyTorque > 0):
print('\nIt can recover\n')
# xCOMPre = np.linspace(
# 1, xLen, xLen).dot(
# np.sum(
# weightMat, axis=(
# 2, 1)))
# yCOMPre = np.linspace(
# 1, yLen, yLen).dot(
# np.sum(
# weightMat, axis=(
# 0, 2)))
# zCOMPre = np.linspace(
# 1, zLen, zLen).dot(
# np.sum(
# weightMat, axis=(
# 1, 0)))
plt.figure(1)
# plt.matshow(fliTrans(hullMesh[MidIndexX, :, :]))
plt.matshow(fliTrans(SubmergedMesh[MidIndexX, :, :] > 0))
plt.title('Submerged_yz ' + str(degreeAngle))
plt.show()
plt.figure(2)
# plt.matshow(fliTrans(hullMesh[MidIndexX, :, :]))
plt.matshow(fliTrans(hullMesh[MidIndexX, :, :] > 0))
plt.title('yz ' + str(degreeAngle))
plt.show()
plt.figure(3)
plt.matshow(fliTrans(hullMesh[:, MidIndexY, :] > 0))
plt.title('xz')
plt.show()
zWeightArray = np.sum(hullMesh > 0, axis=(1, 0))
xNoZeroIndexArray = np.where(np.sum(hullMesh, axis=(1, 2)) > 0)[0]
yNoZeroIndexArray = np.where(np.sum(hullMesh, axis=(2, 0)) > 0)[0]
def calculMaxZIndexOfBoat(zWeightArray):
for i in range(zLen -1):
if zWeightArray[i] > zWeightArray[i+1] * 1.1:
return i
boatHeightIndex = calculMaxZIndexOfBoat(zWeightArray)
plt.figure(4)
plt.matshow(fliTrans(hullMesh[:, :, boatHeightIndex]) > 0)
plt.title('xy')
plt.show()
print('The height of Boat is: ', (calculMaxZIndexOfBoat(zWeightArray) - np.where(zWeightArray > 0)[0][0]) * precision)
print('The Length of Boat is: ', (xNoZeroIndexArray[-1] - xNoZeroIndexArray[0]) * precision)
print('The Width of Boat is: ', (yNoZeroIndexArray[-1] - yNoZeroIndexArray[0]) * precision)
synthesisMap = noWaterMesh + (hullMesh[MidIndexX, :, :] > 0)
synthesisMap[xCOM - 2:xCOM - 2:, yCOM - 2:yCOM + 2, zCOM - 2:zCOM + 2] += 1
synthesisMap[xCOB - 2:xCOB + 2, yCOB - 2:yCOB + 2, zCOB - 2:zCOB + 2] += 1
plt.figure(5)
plt.matshow(fliTrans(synthesisMap[xCOM, :, :]))
plt.title('synthesisMap')
plt.show()
# fig1 = plt.figure(1)
# ax = Axes3D(fig1)
#
# ax.plot_surface(
# xGrid,
# yGrid,
# zGrid,
# rstride=1,
# cstride=1,
# cmap='rainbow')
# # ax.plot_surface(xGrid, yGrid, DPlane, rstride=1, cstride=1, cmap='rainbow')
#
# plt.show()
pass