yade-dev team mailing list archive
-
yade-dev team
-
Mailing list archive
-
Message #05929
[Branch ~yade-dev/yade/trunk] Rev 2498: 1. In PSD-engine wrong maxX, ..Y and ..Z calculation fixed
------------------------------------------------------------
revno: 2498
committer: Anton Gladky <gladky.anton@xxxxxxxxx>
branch nick: yade
timestamp: Mon 2010-10-18 16:51:14 +0200
message:
1. In PSD-engine wrong maxX, ..Y and ..Z calculation fixed
modified:
pkg/dem/ParticleSizeDistrbutionRPMRecorder.cpp
--
lp:yade
https://code.launchpad.net/~yade-dev/yade/trunk
Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-dev/yade/trunk/+edit-subscription
=== modified file 'pkg/dem/ParticleSizeDistrbutionRPMRecorder.cpp'
--- pkg/dem/ParticleSizeDistrbutionRPMRecorder.cpp 2010-10-13 16:23:08 +0000
+++ pkg/dem/ParticleSizeDistrbutionRPMRecorder.cpp 2010-10-18 14:51:14 +0000
@@ -166,15 +166,18 @@
if (((sphere1)&&(sphere2))&&(b1 != b2)&&(specimenNumberId1==specimenNumberId2)) {
Real distBetweenSpheres = (b1->state->pos - b2->state->pos).norm() + sphere1->radius + sphere2->radius;
+ Real maxX = abs(b1->state->pos[0] - b2->state->pos[0]) + sphere1->radius + sphere2->radius;
+ Real maxY = abs(b1->state->pos[1] - b2->state->pos[1]) + sphere1->radius + sphere2->radius;
+ Real maxZ = abs(b1->state->pos[2] - b2->state->pos[2]) + sphere1->radius + sphere2->radius;
for (unsigned int i=0; i<arrayIdentIds.size(); i++) {
if ((arrayIdentIds[i].id1 == specimenNumberId1) or (arrayIdentIds[i].id1 == specimenNumberId2)) {
if (arrayIdentIds[i].maxDistanceBetweenSpheres<distBetweenSpheres) {
arrayIdentIds[i].maxDistanceBetweenSpheres = distBetweenSpheres;
- arrayIdentIds[i].maxX = abs(b1->state->pos[0] - b2->state->pos[0]) + sphere1->radius + sphere2->radius;
- arrayIdentIds[i].maxY = abs(b1->state->pos[1] - b2->state->pos[1]) + sphere1->radius + sphere2->radius;
- arrayIdentIds[i].maxZ = abs(b1->state->pos[2] - b2->state->pos[2]) + sphere1->radius + sphere2->radius;
- break;
}
+ if (arrayIdentIds[i].maxX < maxX) {arrayIdentIds[i].maxX = maxX;}
+ if (arrayIdentIds[i].maxY < maxY) {arrayIdentIds[i].maxY = maxY;}
+ if (arrayIdentIds[i].maxZ < maxZ) {arrayIdentIds[i].maxZ = maxZ;}
+ break;
}
}
}