Re: [Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 4013: improve output and remove first iteration in calculation velocity estimation

2014-06-11 Thread Klaus Thoeni
Hi Alex, you are right. There should not be a +1. I changed it already. Klaus On Wednesday 11 June 2014 13:14:07 Eulitz, Alexander wrote: > Hi Klaus, > I just checked your script. In my eyes the revision does the first iteration > wasn't considered in calculation of velocity before Rev4013. O.r

[Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 4018: Prevent adding liqVol-parameters into VTK-files

2014-06-11 Thread noreply
revno: 4018 committer: Anton Gladky timestamp: Wed 2014-06-11 14:05:52 +0200 message: Prevent adding liqVol-parameters into VTK-files for the case, when "liquidcontrol" not enabled. Fixes crashes in some cases. modified: pkg/d

[Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 4020: Disable vectorization by default.

2014-06-11 Thread noreply
revno: 4020 committer: Anton Gladky timestamp: Wed 2014-06-11 14:20:23 +0200 message: Disable vectorization by default. Replace NOVECTORIZE by VECTORIZE. Vectorization segfaults in some cases. All of them should be fixed. modifi

[Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 4019: Prevent crash in liqVolIterBody

2014-06-11 Thread noreply
revno: 4019 committer: Anton Gladky timestamp: Wed 2014-06-11 14:06:47 +0200 message: Prevent crash in liqVolIterBody Static function can segfault, if the particle has no ViscElCapPhys modified: pkg/dem/ViscoelasticCapillarPM.

[Yade-dev] [UPD] Re: Minimal required Eigen3 version is 3.2.1

2014-06-11 Thread Anton Gladky
I have disabled vectorization by default at the moment. It should be better tested before we do at as the default option. I have got segfaults with some of my scripts. You can enable this option, adding -DVECTORIZE=1 to the cmake-command. It would be good if devs test it on their system. At the mo

[Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 4016: Set minimal required Eigen3 version 3.2.1

2014-06-11 Thread noreply
revno: 4016 committer: Anton Gladky timestamp: Tue 2014-06-10 20:45:13 +0200 message: Set minimal required Eigen3 version 3.2.1 modified: CMakeLists.txt doc/sphinx/installation.rst -- lp:yade https://code.launchpad.net/~yade-pkg/

[Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 4017: Add NOVECTORIZE option

2014-06-11 Thread noreply
revno: 4017 committer: Anton Gladky timestamp: Wed 2014-06-11 10:12:10 +0200 message: Add NOVECTORIZE option On some old systems vectorization causes crashes. This option allows to disable it. modified: CMakeLists.txt -- lp:

Re: [Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 4013: improve output and remove first iteration in calculation velocity estimation

2014-06-11 Thread Eulitz, Alexander
Hi Klaus, I just checked your script. In my eyes the revision does the first iteration wasn't considered in calculation of velocity before Rev4013. O.run(1) O.wait() O.run(2000) print O.iter Gives 2001 as output. Using your revised script: O.run(1) O.wait() O.run(2000+1) print O.iter Gives 2002 as