I want to work on some new effects using the "DK-method" (in tools/ampsim folder of the source code). For me, everything is OK, gEDA is installed and linked to additionnals symbols, python and the dependencies are ok (including the libslicot not listed in the README).
By using the examples (wahwah) in the README, I see all the python files was compiled (pyc) fine but I've the following traceback :
- Code: Select all
maxprod@maxprod-1005HA:~/Public/guitarix-git/trunk/tools/ampsim/DK$ python simu.py --linearize -S wahwah.sch --create-module=crybaby4 --c-samplerate=44100
Traceback (most recent call last):
File "simu.py", line 1420, in <module>
main()
File "simu.py", line 1416, in main
plot_output(g, tests, args)
File "simu.py", line 1199, in plot_output
plot_one(v, args, t)
File "simu.py", line 1191, in plot_one
v.plot(p)
AttributeError: 'LoadedSchema' object has no attribute 'plot'
Previously, I have a python error on the "dk_simulator.py" on line 785, I just replace the :
- Code: Select all
self.CV = self.CV + (Nnr[unselect].T * Jc[unselect]).T
to
- Code: Select all
self.CV = self.CV + (self.Nnr[unselect].T * Jc[unselect]).T
because Python say that Nnr as no namespace otherwise. Don't know why my python check that as an error.
I know this part of Guitarix is an experimental part but this is a very good part too. I've a lot of very cool schematix of rare fx and hope this project will be able to produce a large range of preamp/amp in future. This is a GREAT and WONDERFUL project !!! Congratulation !
Thank you very for your time.
Maxprod