added 64x64 bmp dump modes for fft
[physik/nlsop.git] / nlsop.h
diff --git a/nlsop.h b/nlsop.h
index 35989b3..24778fa 100644 (file)
--- a/nlsop.h
+++ b/nlsop.h
@@ -12,8 +12,9 @@ typedef unsigned int u32;
 
 typedef struct __info
 {
- int cc,steps,range;
- double a_el,b_el,a_cd,b_cd,a_ap,b_ap,d_r;
+ int cc,steps,range,diff_rate;
+ double a_el,b_el,a_cd,b_cd,a_ap,b_ap,a_cp,dr_ac,dr_cc;
+ char z_diff;
 } info;
 
 #define AMORPH 1
@@ -28,19 +29,29 @@ typedef struct __info
 #define STEPS 100000
 #define RANGE 3
 #define REFRESH 20
+#define RESAVE 10000
 
 #define A_CD 1.
 #define B_CD .0
 
 #define CC 0
 
-#define D_R .5
+#define DR_AC .5
+#define DR_CC .2
+#define DIFF_RATE 100
 
 #define A_AP .1
-#define B_AP .2
+#define B_AP .0
 
-#define MAX_CHARS 64
+#define A_CP .01
+
+#define MAX_CHARS 128
 #define MAX_TXT 32
 #define MAX_ARGV 27
 
+#define IMP_PROFILE "imp-profile.txt"
+#define CELL_LENGTH 3 /* nm */
+
+#define FFT_HEIGHT 64
+
 #endif /* NLSOP_H */