You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
15 years ago
|
#ifndef LORENZ_HPP
|
||
|
#define LORENZ_HPP
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <cstdlib>
|
||
|
#include <cassert>
|
||
|
#include <string>
|
||
|
using namespace std;
|
||
|
|
||
|
#include "../AttractorKernel.hpp"
|
||
|
|
||
|
class Lorenz : public AttractorKernel {
|
||
|
|
||
|
double * myParameters;
|
||
|
|
||
|
double * vectorNew;
|
||
|
double * vectorOld;
|
||
|
|
||
|
void init();
|
||
|
|
||
|
public:
|
||
|
|
||
|
Lorenz();
|
||
|
Lorenz(const unsigned int dimensions);
|
||
|
|
||
|
// parameters are stored in a array of doubles
|
||
|
// if you want to use other types, use the properties
|
||
|
virtual double& parameter(const unsigned int index);
|
||
|
virtual double*& parameters();
|
||
|
|
||
|
// get properties of the attractor
|
||
|
// such as the dimension
|
||
|
// you should delete the void pointer if you used it
|
||
|
virtual void * getProperty(const string identifier);
|
||
|
virtual void setProperty(const string identifier, const void * value);
|
||
|
|
||
|
// iterate his formula
|
||
|
// vector pointers will be swapped! so new remains new and old remains old
|
||
|
virtual void iterate();
|
||
|
|
||
|
// getter functions for teh resulta
|
||
|
virtual double * & vector();
|
||
|
virtual double * & previousVector();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // LORENZ_HPP
|
||
|
|