1 | //SETTINGS class definition
|
---|
2 | //
|
---|
3 | // Usage:
|
---|
4 | // settings=new settings();
|
---|
5 |
|
---|
6 | function settings (){
|
---|
7 | //methods
|
---|
8 | this.setdefaultparameters = function(){// {{{
|
---|
9 | //are we short in memory ? (0 faster but requires more memory)
|
---|
10 | this.lowmem=0;
|
---|
11 |
|
---|
12 | //i/o:
|
---|
13 | this.io_gather=1;
|
---|
14 |
|
---|
15 | //results frequency by default every step
|
---|
16 | this.output_frequency=1;
|
---|
17 |
|
---|
18 | //checkpoints frequency, by default never:
|
---|
19 | this.recording_frequency=0;
|
---|
20 |
|
---|
21 | //this option can be activated to load automatically the results
|
---|
22 | //onto the model after a parallel run by waiting for the lock file
|
---|
23 | //N minutes that is generated once the solution has converged
|
---|
24 | //0 to deactivate
|
---|
25 | this.waitonlock=Infinity;
|
---|
26 |
|
---|
27 | //upload options:
|
---|
28 | upload_port = 0;
|
---|
29 |
|
---|
30 | }// }}}
|
---|
31 | this.disp= function(){// {{{
|
---|
32 | console.log(sprintf(' settings class echo:'));
|
---|
33 |
|
---|
34 | fielddisplay(this,'results_on_nodes','results are output for all the nodes of each element');
|
---|
35 | fielddisplay(this,'io_gather','I/O gathering strategy for result outputs (default 1)');
|
---|
36 | fielddisplay(this,'lowmem','is the memory limited ? (0 or 1)');
|
---|
37 | fielddisplay(this,'output_frequency','frequency at which results are saved in all solutions with multiple time_steps');
|
---|
38 | fielddisplay(this,'recording_frequency','frequency at which the runs are being recorded, allowing for a restart');
|
---|
39 | fielddisplay(this,'waitonlock','maximum number of minutes to wait for batch results (NaN to deactivate)');
|
---|
40 | fielddisplay(this,'upload_server','server hostname where model should be uploaded');
|
---|
41 | fielddisplay(this,'upload_path','path on server where model should be uploaded');
|
---|
42 | fielddisplay(this,'upload_login','server login');
|
---|
43 | fielddisplay(this,'upload_port','port login (default is 0)');
|
---|
44 | fielddisplay(this,'upload_filename','unique id generated when uploading the file to server');
|
---|
45 |
|
---|
46 |
|
---|
47 | }// }}}
|
---|
48 | this.classname= function(){// {{{
|
---|
49 | return "settings";
|
---|
50 |
|
---|
51 | }// }}}
|
---|
52 | this.checkconsistency = function(md,solution,analyses) { // {{{
|
---|
53 |
|
---|
54 | checkfield(md,'fieldname','settings.results_on_nodes','numel',[1],'values',[0, 1]);
|
---|
55 | checkfield(md,'fieldname','settings.io_gather','numel',[1],'values',[0, 1]);
|
---|
56 | checkfield(md,'fieldname','settings.lowmem','numel',[1],'values',[0, 1]);
|
---|
57 | checkfield(md,'fieldname','settings.output_frequency','numel',[1],'>=',1);
|
---|
58 | checkfield(md,'fieldname','settings.recording_frequency','numel',[1],'>=',0);
|
---|
59 | checkfield(md,'fieldname','settings.waitonlock','numel',[1]);
|
---|
60 | } // }}}
|
---|
61 | this.marshall=function(md,fid) { //{{{
|
---|
62 | WriteData(fid,'object',this,'fieldname','results_on_nodes','format','Boolean');
|
---|
63 | WriteData(fid,'object',this,'fieldname','io_gather','format','Boolean');
|
---|
64 | WriteData(fid,'object',this,'fieldname','lowmem','format','Boolean');
|
---|
65 | WriteData(fid,'object',this,'fieldname','output_frequency','format','Integer');
|
---|
66 | WriteData(fid,'object',this,'fieldname','recording_frequency','format','Integer');
|
---|
67 | if (this.waitonlock>0) WriteData(fid,'enum',SettingsWaitonlockEnum(),'data',true,'format','Boolean');
|
---|
68 | else WriteData(fid,'enum',SettingsWaitonlockEnum(),'data',false,'format','Boolean');
|
---|
69 | }//}}}
|
---|
70 | this.fix=function() { //{{{
|
---|
71 | }//}}}
|
---|
72 | //properties
|
---|
73 | // {{{
|
---|
74 | this.results_on_nodes = 0;
|
---|
75 | this.io_gather = 0;
|
---|
76 | this.lowmem = 0;
|
---|
77 | this.output_frequency = 0;
|
---|
78 | this.recording_frequency = 0;
|
---|
79 | this.waitonlock = 0;
|
---|
80 | this.upload_server = '';
|
---|
81 | this.upload_path = '';
|
---|
82 | this.upload_login = '';
|
---|
83 | this.upload_port = 0;
|
---|
84 | this.upload_filename = '';
|
---|
85 | this.setdefaultparameters();
|
---|
86 | //}}}
|
---|
87 | }
|
---|