[Yade-dev] buildbot failure in Yade on yade-full

2013-09-05 Thread buildbot
The Buildbot has detected a failed build on builder yade-full while building 
yade.
Full details are available at:
 http://yade-dem.org/buildbot/builders/yade-full/builds/2137

Buildbot URL: http://yade-dem.org/buildbot/

Buildslave for this Build: r0calcul5

Build Reason: scheduler
Build Source Stamp: [branch master] dfb9745723d8e5c9c17852f621b489b9482eb22d
Blamelist: Anton Gladky 

BUILD FAILED: failed test

sincerely,
 -The Buildbot



___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


[Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 3721: Remove explicit linking of libstdcxx.

2013-09-05 Thread noreply

revno: 3721
committer: Anton Gladky 
timestamp: Thu 2013-09-05 09:52:37 +0200
message:
  Remove explicit linking of libstdcxx.
modified:
  CMakeLists.txt


--
lp:yade
https://code.launchpad.net/~yade-pkg/yade/git-trunk

Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to 
https://code.launchpad.net/~yade-pkg/yade/git-trunk/+edit-subscription
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt	2013-09-05 07:52:37 +
+++ CMakeLists.txt	2013-09-05 07:52:37 +
@@ -380,7 +380,6 @@
 SET (pyExecutable ${PYTHON_EXECUTABLE})
 SET (profile "default")
 SET (sourceRoot "${CMAKE_CURRENT_SOURCE_DIR}")
-SET (libstdcxx "/usr/lib/libstdc++.so.6") #This is a hack, which is not needed for modern systems. Should be deleted.
 #
 
 CONFIGURE_FILE(core/main/yade-batch.in "${CMAKE_BINARY_DIR}/bins/yade${SUFFIX}-batch")

___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


[Yade-dev] [Branch ~yade-pkg/yade/git-trunk] Rev 3720: Add a notification to the screen, whether the current build is debugbuild.

2013-09-05 Thread noreply

revno: 3720
committer: Anton Gladky 
timestamp: Thu 2013-09-05 09:52:37 +0200
message:
  Add a notification to the screen, whether the current build is debugbuild.
modified:
  CMakeLists.txt
  core/main/main.py.in


--
lp:yade
https://code.launchpad.net/~yade-pkg/yade/git-trunk

Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to 
https://code.launchpad.net/~yade-pkg/yade/git-trunk/+edit-subscription
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt	2013-08-15 12:52:44 +
+++ CMakeLists.txt	2013-09-05 07:52:37 +
@@ -409,6 +409,7 @@
 MESSAGE(STATUS "Disabled features:${DISABLED_FEATS}")
 IF (DEBUG)
   MESSAGE(STATUS "Debug build")
+  SET (debugbuild " (debug build)")
 ELSE (DEBUG)
   MESSAGE(STATUS "Optimized build")
 ENDIF (DEBUG)

=== modified file 'core/main/main.py.in'
--- core/main/main.py.in	2013-08-26 15:45:31 +
+++ core/main/main.py.in	2013-09-05 07:52:37 +
@@ -11,7 +11,7 @@
 # get yade path (allow YADE_PREFIX to override)
 prefix,suffix='${runtimePREFIX}' if not os.environ.has_key('YADE_PREFIX') else os.environ['YADE_PREFIX'],'${SUFFIX}'
 # duplicate some items from yade.config here, so that we can increase verbosity when the c++ part is booting
-features,version='${features}'.split(' '),'${realVersion}'
+features,version,debugbuild='${features}'.split(' '),'${realVersion}',' ${debugbuild}'
 
 libPATH='${LIBRARY_OUTPUT_PATH}'
 if (libPATH[1:] == '{LIBRARY_OUTPUT_PATH}'): libPATH='lib'
@@ -62,7 +62,7 @@
 		__import__(lib)
 
 if opts.version:
-	print 'Yade version: %s'%version
+	print 'Yade version: %s%s'%(version,debugbuild)
 	sys.exit(0)
 
 if opts.script:
@@ -115,7 +115,7 @@
 else: os.environ['OMP_NUM_THREADS']='1'
 
 if __name__ == "__main__": # do not print this while importing yade in other python application
-	sys.stderr.write('Welcome to Yade '+version+'\n')
+	sys.stderr.write('Welcome to Yade '+version+debugbuild+'\n')
 
 # initialization and c++ plugins import
 import yade

___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Yade-dev] Modified GlobalStiffnessTimeStepper for visco-elastic contact law

2013-09-05 Thread Bruno Chareyre
Hi Raphael,

You explanations should definitely go to the documentation. You can take
the text below and put it in good shape for the class documentation of
the viscous timeStepper.

>
> I have some questions about that :
> - Does the evaluation of the time step seems reasonable to you?
>
I think so, since you re-used our approach. ;)

> - What can I do to test it quantitavely ? (if I try a collision
> between two beads, GSTS does not work..)
>
A good test is this:
- start from an equilibrated dense packing(this is the worst case in
terms of timestep). The end of a gravity deposition with 100 spheres,
for instance.
- then
 while kinetic energy < smth:
run(20)
O.dt = 1.1*O.dt #make sure the timeStepper will not interfere by
setting its own dt

The transition between a very small kinetic energy and an explosion is
very sudden, it will let you evaluate the critical timestep very
precisely and compare with your theoretical value.

> - To add it to the code, should I add it as a new "file"/"function" or
> should I implement it as an option of GSTS ?
>
Merging in the existing one is better. It will need to assume that the
user is activatingthe viscous part of the calculation wisely (and that
it is disabled by default).
It is the only way to avoid dynamic casts to check if each interaction
does/not have a viscosity.
>
> And about GSTS in general :
> - why is GSTS not working when we consider a gravity deposition or a
> collision ?? (even when defaultDt is small enough)
>
What "not working" means here? Collisions introduce an additional
restriction: dt < velocity/diameter, else one particle can go through
another in less than one step, hence never detected (or poorly resolved).
This is independant of the stability condition of the scheme.

Bruno

___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Yade-dev] bool MatchMaker

2013-09-05 Thread Bruno Chareyre





> Hi Bruno
>
> I think in terms of performance it might be better to keep MatchMaker in IP2 
> rather to add some in the Law functor. Further I think maybe we could get rid 
> of includeMoment=True/False in the Law functor.
>
> My suggestion is MatchMaker for eta, krot and ktwist. This makes as well more 
> sense if looking at the use of various materials. includeMoment can then be 
> set by the Ip2 functor (it can be an internal variable of the Ip2) by 
> checking 
> if krot or ktwist are defined.
>
> What do you think about this suggestion? If you are happy I would try it?

Good suggestions. You are welcome to try it.

A "moment" flag in each interaction would be nice indeed. They would
have a default depending on material properties, and could be
manipulated globally, just like contact friction:
setContactMoment(True/False).

B


___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


[Yade-dev] [Bug 1217770] Re: boot failure after an upgrade of yade-daily

2013-09-05 Thread Seungcheol Yeom
I still have this issue. Can anyone give me a solution? Thank you.

Seungcheol

-- 
You received this bug notification because you are a member of Yade
developers, which is subscribed to Yade.
https://bugs.launchpad.net/bugs/1217770

Title:
  boot failure after an upgrade of yade-daily

Status in Yet Another Dynamic Engine:
  Fix Released

Bug description:
  I am using Ubuntu 12.04
  After upgrading yade-daily, I get an error message when trying to execute 
yade-daily : 

  raphael@GRP3723:~/FluidMODIF/test/PY/YADE$ yade-daily
  Welcome to Yade 4+3684+50~precise1
  Traceback (most recent call last):
File "/usr/bin/yade-daily", line 115, in 
  import yade
File "/usr/lib/x86_64-linux-gnu/yade-daily/py/yade/__init__.py", line 65, 
in 
  import boot
  ImportError: libopenblas.so: cannot open shared object file: No such file or 
directory

  Installing libopenblas-dev solved my problem. It seems libopenblas was
  not install before on my computer.

  Raphaël

To manage notifications about this bug go to:
https://bugs.launchpad.net/yade/+bug/1217770/+subscriptions

___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


[Yade-dev] buildbot failure in Yade on yade-full

2013-09-05 Thread buildbot
The Buildbot has detected a failed build on builder yade-full while building 
Yade.
Full details are available at:
 http://yade-dem.org/buildbot/builders/yade-full/builds/2138

Buildbot URL: http://yade-dem.org/buildbot/

Buildslave for this Build: r0calcul5

Build Reason: The Nightly scheduler named 'nightly' triggered this build
Build Source Stamp: HEAD
Blamelist: 

BUILD FAILED: failed test

sincerely,
 -The Buildbot



___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


[Yade-dev] [Bug 1217770] Re: boot failure after an upgrade of yade-daily

2013-09-05 Thread Seungcheol Yeom
Thank you for the response Anton!

I am using Ubuntu 12.04 LTS and the version of yade daily is 4+3684+50~precise1.
Thanks again!

Seungcheol

-- 
You received this bug notification because you are a member of Yade
developers, which is subscribed to Yade.
https://bugs.launchpad.net/bugs/1217770

Title:
  boot failure after an upgrade of yade-daily

Status in Yet Another Dynamic Engine:
  Fix Released

Bug description:
  I am using Ubuntu 12.04
  After upgrading yade-daily, I get an error message when trying to execute 
yade-daily : 

  raphael@GRP3723:~/FluidMODIF/test/PY/YADE$ yade-daily
  Welcome to Yade 4+3684+50~precise1
  Traceback (most recent call last):
File "/usr/bin/yade-daily", line 115, in 
  import yade
File "/usr/lib/x86_64-linux-gnu/yade-daily/py/yade/__init__.py", line 65, 
in 
  import boot
  ImportError: libopenblas.so: cannot open shared object file: No such file or 
directory

  Installing libopenblas-dev solved my problem. It seems libopenblas was
  not install before on my computer.

  Raphaël

To manage notifications about this bug go to:
https://bugs.launchpad.net/yade/+bug/1217770/+subscriptions

___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


[Yade-dev] [Bug 1217770] Re: boot failure after an upgrade of yade-daily

2013-09-05 Thread Seungcheol Yeom
Thank you Anton,

I have tried and it is not working. 
I have install libopenblas-base and update.
It is giving me a same error. sigh.

Seungcheol

-- 
You received this bug notification because you are a member of Yade
developers, which is subscribed to Yade.
https://bugs.launchpad.net/bugs/1217770

Title:
  boot failure after an upgrade of yade-daily

Status in Yet Another Dynamic Engine:
  Fix Released

Bug description:
  I am using Ubuntu 12.04
  After upgrading yade-daily, I get an error message when trying to execute 
yade-daily : 

  raphael@GRP3723:~/FluidMODIF/test/PY/YADE$ yade-daily
  Welcome to Yade 4+3684+50~precise1
  Traceback (most recent call last):
File "/usr/bin/yade-daily", line 115, in 
  import yade
File "/usr/lib/x86_64-linux-gnu/yade-daily/py/yade/__init__.py", line 65, 
in 
  import boot
  ImportError: libopenblas.so: cannot open shared object file: No such file or 
directory

  Installing libopenblas-dev solved my problem. It seems libopenblas was
  not install before on my computer.

  Raphaël

To manage notifications about this bug go to:
https://bugs.launchpad.net/yade/+bug/1217770/+subscriptions

___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Yade-dev] [Bug 1217770] Re: boot failure after an upgrade of yade-daily

2013-09-05 Thread Anton Gladky
That is probably due to a build failures of packages last week.
sudo apt-get install  libopenblas-base

should fix your problem.

Anton


2013/9/5 Seungcheol Yeom :
> I still have this issue. Can anyone give me a solution? Thank you.
>
> Seungcheol
>
> --
> You received this bug notification because you are subscribed to Yade.
> https://bugs.launchpad.net/bugs/1217770
>
> Title:
>   boot failure after an upgrade of yade-daily
>
> Status in Yet Another Dynamic Engine:
>   Fix Released
>
> Bug description:
>   I am using Ubuntu 12.04
>   After upgrading yade-daily, I get an error message when trying to execute 
> yade-daily :
>
>   raphael@GRP3723:~/FluidMODIF/test/PY/YADE$ yade-daily
>   Welcome to Yade 4+3684+50~precise1
>   Traceback (most recent call last):
> File "/usr/bin/yade-daily", line 115, in 
>   import yade
> File "/usr/lib/x86_64-linux-gnu/yade-daily/py/yade/__init__.py", line 65, 
> in 
>   import boot
>   ImportError: libopenblas.so: cannot open shared object file: No such file 
> or directory
>
>   Installing libopenblas-dev solved my problem. It seems libopenblas was
>   not install before on my computer.
>
>   Raphaël
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/yade/+bug/1217770/+subscriptions

-- 
You received this bug notification because you are a member of Yade
developers, which is subscribed to Yade.
https://bugs.launchpad.net/bugs/1217770

Title:
  boot failure after an upgrade of yade-daily

Status in Yet Another Dynamic Engine:
  Fix Released

Bug description:
  I am using Ubuntu 12.04
  After upgrading yade-daily, I get an error message when trying to execute 
yade-daily : 

  raphael@GRP3723:~/FluidMODIF/test/PY/YADE$ yade-daily
  Welcome to Yade 4+3684+50~precise1
  Traceback (most recent call last):
File "/usr/bin/yade-daily", line 115, in 
  import yade
File "/usr/lib/x86_64-linux-gnu/yade-daily/py/yade/__init__.py", line 65, 
in 
  import boot
  ImportError: libopenblas.so: cannot open shared object file: No such file or 
directory

  Installing libopenblas-dev solved my problem. It seems libopenblas was
  not install before on my computer.

  Raphaël

To manage notifications about this bug go to:
https://bugs.launchpad.net/yade/+bug/1217770/+subscriptions

___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


Re: [Yade-dev] [Bug 1217770] Re: boot failure after an upgrade of yade-daily

2013-09-05 Thread Anton Gladky
What operating system do you use and what yade-daily version
do you have?

Anton


2013/9/5 Seungcheol Yeom :
> Thank you Anton,
>
> I have tried and it is not working.
> I have install libopenblas-base and update.
> It is giving me a same error. sigh.
>
> Seungcheol
>
> --
> You received this bug notification because you are subscribed to Yade.
> https://bugs.launchpad.net/bugs/1217770
>
> Title:
>   boot failure after an upgrade of yade-daily
>
> Status in Yet Another Dynamic Engine:
>   Fix Released
>
> Bug description:
>   I am using Ubuntu 12.04
>   After upgrading yade-daily, I get an error message when trying to execute 
> yade-daily :
>
>   raphael@GRP3723:~/FluidMODIF/test/PY/YADE$ yade-daily
>   Welcome to Yade 4+3684+50~precise1
>   Traceback (most recent call last):
> File "/usr/bin/yade-daily", line 115, in 
>   import yade
> File "/usr/lib/x86_64-linux-gnu/yade-daily/py/yade/__init__.py", line 65, 
> in 
>   import boot
>   ImportError: libopenblas.so: cannot open shared object file: No such file 
> or directory
>
>   Installing libopenblas-dev solved my problem. It seems libopenblas was
>   not install before on my computer.
>
>   Raphaël
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/yade/+bug/1217770/+subscriptions

-- 
You received this bug notification because you are a member of Yade
developers, which is subscribed to Yade.
https://bugs.launchpad.net/bugs/1217770

Title:
  boot failure after an upgrade of yade-daily

Status in Yet Another Dynamic Engine:
  Fix Released

Bug description:
  I am using Ubuntu 12.04
  After upgrading yade-daily, I get an error message when trying to execute 
yade-daily : 

  raphael@GRP3723:~/FluidMODIF/test/PY/YADE$ yade-daily
  Welcome to Yade 4+3684+50~precise1
  Traceback (most recent call last):
File "/usr/bin/yade-daily", line 115, in 
  import yade
File "/usr/lib/x86_64-linux-gnu/yade-daily/py/yade/__init__.py", line 65, 
in 
  import boot
  ImportError: libopenblas.so: cannot open shared object file: No such file or 
directory

  Installing libopenblas-dev solved my problem. It seems libopenblas was
  not install before on my computer.

  Raphaël

To manage notifications about this bug go to:
https://bugs.launchpad.net/yade/+bug/1217770/+subscriptions

___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


[Yade-dev] buildbot failure in Yade on yade-clang

2013-09-05 Thread buildbot
The Buildbot has detected a failed build on builder yade-clang while building 
Yade.
Full details are available at:
 http://yade-dem.org/buildbot/builders/yade-clang/builds/187

Buildbot URL: http://yade-dem.org/buildbot/

Buildslave for this Build: r0calcul5

Build Reason: The Nightly scheduler named 'nightly' triggered this build
Build Source Stamp: HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot



___
Mailing list: https://launchpad.net/~yade-dev
Post to : yade-dev@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp