Difference between revisions of "Modeling"

From wiki
Jump to navigation Jump to search
Line 6: Line 6:
 
* Parameters that determine how the system attributes change are stored in a [[Python:DataTypes#Dictionary_or_dict|dictionary]] or also in a pandas series.
 
* Parameters that determine how the system attributes change are stored in a [[Python:DataTypes#Dictionary_or_dict|dictionary]] or also in a pandas series.
 
* The functions that change the system attributes take the system parameters as parameter. This way you can play with the parameter values to get the best result.
 
* The functions that change the system attributes take the system parameters as parameter. This way you can play with the parameter values to get the best result.
* [[Numpy#linspace]] provides an equally distributed range of values so you can play easily between the limits you set.  
+
** [[Numpy#linspace]] provides an equally distributed range of values so you can play easily between the limits you set.  
 
* The quality of the model can be judged by calculating the relative error of the [[Approximation]]   
 
* The quality of the model can be judged by calculating the relative error of the [[Approximation]]   
  

Revision as of 15:37, 25 December 2018

Mostly based on this paper that comes with its own modsim library.

  • A model depicts a system.
  • The state of the system attributes is stored in a Pandas#Series
  • Results of how the system attributes change over time are stored in Pandas Series too (1 Series per attribute).
  • Parameters that determine how the system attributes change are stored in a dictionary or also in a pandas series.
  • The functions that change the system attributes take the system parameters as parameter. This way you can play with the parameter values to get the best result.
    • Numpy#linspace provides an equally distributed range of values so you can play easily between the limits you set.
  • The quality of the model can be judged by calculating the relative error of the Approximation

Other remarks

  • If you use randomness in a function, get the mean values of several runs.

Example code

Numpy linspace

funcAresults = pd.Series([])
p1_array = np.linspace(0,1,12)
for p1 in p1_array:
    for a in range(50):
        funcAresults[a] = functionAcall(p1,p2)
    print(funcAresults)

Store results in a Pandas Series

for a in range(100):
    funcAresults[a] = functionAcall(bla,bla)
    funcBresults[a] = functionBcall(bla,bla)