Sep-24-2016, 08:15 AM
i made an .fcl file in qtfuzzylite.I want to load it in python 2.7 with fcl Reader.It must do some calculation with the given inputs then it must give the output value.when i run the program it writes Key Error 'PNEU
I used this example: http://pyfuzzy.sourceforge.net/doc/quickstart.html
I used this example: http://pyfuzzy.sourceforge.net/doc/quickstart.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import fuzzy.storage.fcl.Reader system = fuzzy.storage.fcl.Reader.Reader().load_from_file( "Ballpositioner2.fcl" ) # preallocate input and output values my_input = { "REQ_POS" : 0.0 , "REQ_ANGLE" : 0.0 , "DESIRED" : 0.0 , } my_output = { "PNEU" : 3 , } # if you need only one calculation you do not need the while # set input values my_input[ "REQ_POS" ] = 10 my_input[ "REQ_ANGLE" ] = 20 my_input[ "DESIRED" ] = 30 # calculate system.calculate(my_input, my_output) # now use outputs b = my_output[ "PNEU" ] line 3 : 0 extraneous input u 'VAR_INPUT' expecting Identifier Traceback (most recent call last): File "D:\Szabolcs\szte\Szakdolgozat\Python\python 27\ewrwewerwer.py" , line 23 , in <module> system.calculate(my_input, my_output) File "C:\Python27\lib\site-packages\fuzzy\System.py" , line 93 , in calculate self .defuzzify(output) File "C:\Python27\lib\site-packages\fuzzy\System.py" , line 76 , in defuzzify output[name] = self .variables[name].getValue() KeyError: 'PNEU' |