Changeset 912 for trunk/src/series.m


Ignore:
Timestamp:
Jun 16, 2015, 8:15:10 PM (9 years ago)
Author:
sommeria
Message:

interp range introduced in set_object

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series.m

    r911 r912  
    19291929            end
    19301930        end
    1931         filename_joblist=fullfile(DirOAR,'0_job_list.txt');%create name of the global executable file
     1931        filename_joblist=fullfile(DirOAR,'job_list.txt');%create name of the global executable file
    19321932        filename_log=fullfile(DirLog,'job_list.stdout');%file for output messages of the master oar process
    19331933        filename_errors=fullfile(DirLog,'job_list.stderr');%file for error messages of the master oar process
     
    19471947        % shorter than the wall time: in the time interval 'checkpoint' (WallTimeOneJob) before the end of the allowed duration,
    19481948        %  the oar job restarts when an individual job ends.
    1949         JobTime=CPUTime*BlockLength*nbfield_j% estimated time for one individual job (in minutes)
     1949        JobTime=CPUTime*BlockLength*nbfield_j;% estimated time for one individual job (in minutes)
    19501950        % wall time (in hours ) for each oar job, allowing 10 individual jobs, but limited to 23 h:
    19511951        WallTimeTotal=min(23,4*JobTime/60);
    1952         disp(['WallTimeTotal: ' num2str(WallTimeTotal) ' hours'])
     1952        %disp(['WallTimeTotal: ' num2str(WallTimeTotal) ' hours'])
    19531953        % estimated time of an individual job (in min), with a margin of error
    19541954        WallTimeOneJob=min(4*JobTime+10,WallTimeTotal*60/2);% estimated max time of an individual job for checkpoint
     
    33963396        elseif isequal(Civ,4) || isequal(Civ,5)
    33973397            imax=3;
    3398         elseif isequal(Civ,6) %patch2
     3398        else%if isequal(Civ,6) %patch2
    33993399            imax=4;
    34003400        end
Note: See TracChangeset for help on using the changeset viewer.