Source code for sas.perspectives.fitting.plugin_models.testmodel
"""
Test plug-in model
These are links of available functions:
http://docs.python.org/library/math.html
http://www.scipy.org/Numpy_Functions_by_Category
"""
"""
## *****************************************************************************
Please select the 'Compile' from the menubar after the modification and saving.
Note that we recommend to save the file as a different file name.
Otherwise, it could be removed in the future on re-installation of the SasView.
## *****************************************************************************
"""
from sas.models.pluginmodel import Model1DPlugin ##DO NOT CHANGE THIS LINE!!!
import math ##DO NOT CHANGE THIS LINE!!!
import numpy ##DO NOT CHANGE THIS LINE!!!
import os
import sys
##PLEASE READ COMMENTS CAREFULLY !!! COMMENT ARE IN CAPITAL LETTERS AND AFTER ##
## THESE COMMENTS ARE THERE TO GUIDE YOU. YOU CAN REMOVE THEM ONLY WHEN YOU ARE
## CONFORTABLE ENOUGH WITH OUR MODEL PLUGIN OPTION
## <----- SIGN DEFINES WHERE YOU CAN MODIFY THE CODE
[docs]class Model(Model1DPlugin):##DO NOT CHANGE THIS LINE!!!
"""
##YOU CAN BE MODIFY ANYTHING BETWEEN """ """
##DESCRIPTION OF MODEL PLUG-IN GOES HERE
##EXAMPLE:Class that evaluates a cos(x) model.
"""
name = ""
def __init__(self):
"""
Initialization
"""
Model1DPlugin.__init__(self, name= self.name)##DO NOT CHANGE THIS LINE!!!
## EDIT PARAMETERS' NAMES AND VALUE
## DELETE MODIFIABLE LINE HERE WILL REDUCE THE NUMBER OF PARAMETERS
self.params = {} ##DO NOT CHANGE THIS LINE!!!
# Set the name same as the file name
self.name = self.get_fname() ##DO NOT CHANGE THIS LINE!!!
## YOU CAN MODIFY THE LINE BELLOW.CHANGE WORD BETWEEN ' ' AND NUMBER
## YOU CAN ALSO DELETE THIS LINE
self.params['A'] = 1.0 ## <-----
## YOU CAN MODIFY THE LINE BELLOW.CHANGE WORD BETWEEN ' ' AND NUMBER
## YOU CAN ALSO DELETE THIS LINE
self.params['B'] = 1.0 ## <-----
## YOU CAN MODIFY THE LINE BELLOW.CHANGE WORD BETWEEN ' ' AND NUMBER
## YOU CAN ALSO DELETE THIS LINE
self.params['C'] = 10.0 ## <-----
## DEFINE DEFAULT DETAILS
self.set_details() ##DO NOT DELETE OR CHANGE THIS LINE!!!
## YOU CAN MODIFY THE LINE BELLOW.MODIFY WORDS BETWEEN """ """ ONLY!!!!
self.description = "F(x)=A+Bcos(2x)+Csin(2x) " ## <-----
[docs] def function(self, x = 0.0): ##DO NOT CHANGE THIS LINE!!!
"""
Evaluate the model
:param x: input x
:return: function value
"""
## ADD YOUR FUNCTION HERE.
## REUSE THE PARAMETERS DEFINED PREVIOUSLY TO WRITE YOUR FUNCTION.
## IN THIS EXAMPLE THE FUNTION IS:
## A+Bcos(2x)+Csin(2x)
## YOU CAN USE math.sin or sin directly
## NOTE: sin, cos ARE FUNCTIONS IMPORTED FROM PYTHON MATH LIBRARY
## FOR MORE INFORMATION CHECK http://docs.python.org/library/math.html
## OTHER FUNCTIONS ARE ALSO
## AVAILABLE http://www.scipy.org/Numpy_Functions_by_Category
## numpy FUNCTIONS ARE FOR EXPERT USER
return self.params['A']+self.params['B']*math.cos(2.0*x)+self.params['C']*math.sin(2.0*x)
## DO NOT MODIFY THE FOLLOWING LINES!!!!!!!!!!!!!!!!
[docs] def get_fname(self):
"""
Get the model name same as the file name
"""
path = sys._getframe().f_code.co_filename
basename = os.path.basename(path)
name, _ = os.path.splitext(basename)
return name
## DO NOT MODIFY THE FOLLOWING LINES!!!!!!!!!!!!!!!!
if __name__ == "__main__":
m= Model()
out1 = m.runXY(0.0)
out2 = m.runXY(0.01)
isfine1 = numpy.isfinite(out1)
isfine2 = numpy.isfinite(out2)
print "Testing the value at Q = 0.0:"
print out1, " : finite? ", isfine1
print "Testing the value at Q = 0.01:"
print out2, " : finite? ", isfine2
if isfine1 and isfine2:
print "===> Simple Test: Passed!"
else:
print "===> Simple Test: Failed!"