← Back to team overview

yade-users team mailing list archive

Re: [Question #655866]: Rel. to Uniaxial test

 

Question #655866 on Yade changed:
https://answers.launchpad.net/yade/+question/655866

Jan Stránský proposed the following answer:
Hello,
errors thrown by Python are (usually) relatively easy to read. It also tells you what kind of error it is and where the problematic code is located.
In your case, it has nothing to do with yade packing. "ValueError: too many values to unpack" is a 'typical' Python error, where you try to assign uncompatible number of variables. Try e.g.

a,b,c = 1,2,3
a,b,c = 1,2,3,4

Concerning F8, according to your screenshots, you are experiencing [1], where there is a link to workaround. As you have it now, F keys does not work..
Using a script, you can write
import yade.plot; yade.plot.plot()
which is just what F8 would do

cheers
Jan

[1] https://answers.launchpad.net/yade/+question/654435

-- 
You received this question notification because your team yade-users is
an answer contact for Yade.