-
Notifications
You must be signed in to change notification settings - Fork 0
/
header_s.h
49 lines (42 loc) · 977 Bytes
/
header_s.h
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
40
41
42
43
44
45
46
47
48
/*
* header_s.h
* Porj_EffectiveDiffusionNEW
*
* Created by Marino Raffaele on 19/10/15.
* Copyright 2015 Raffaele Marino. All rights reserved.
*
*/
#ifndef HEADER_S_H
#define HEADER_S_H
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <iterator>
#include <algorithm>
#include <valarray>
#include <numeric>
#include <complex>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <cmath>
#include <stdio.h>
#include <unistd.h>
#include <time.h>
#include <random>
#define MAX_SIZE 50000000
using namespace std;
enum{CONF=1000}; //MAX1024*1000000 with -mcmodel=medium
enum{PASSI=50000};
const double PI=3.1415926535897933;
const double numberlc=5;
//const size_t MAX_SIZE_ARRAY=CONF*PASSI;
const double k_B=+1.3806E-2; //femtoNewton*Micrometr*Kelvin{-1}
const double dt=0.001;
const double deltat=1;
const double the_time=50000000.;
const double myzero=1E-15;
const double tau=10000000000;
#endif