Skip to content
Snippets Groups Projects
Commit 4de76beb authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann
Browse files

typos

parent f85ae2db
No related merge requests found
...@@ -4,11 +4,11 @@ addpath(genpath('../matlab')) % ... add ...@@ -4,11 +4,11 @@ addpath(genpath('../matlab')) % ... add
%% Set Up parameters %% Set Up parameters
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% CLUSTER PARAMETERS %% CLUSTER PARAMETERS
CLUSTER.TIME = '01:00:00'; % allocation time hh:mm:ss CLUSTER.TIME = '01:00:00'; % allocation time hh:mm:ss
CLUSTER.NODES = '8'; % MPI process CLUSTER.NODES = '8'; % MPI process
CLUSTER.MEM = '2GB'; % Memory CLUSTER.MEM = '2000'; % Memory
CLUSTER.JNAME = 'HeLaZ';% Job name CLUSTER.JNAME = 'test_HeLaZ'; % Job name
USERNAME = 'ahoffman'; % username at ppb110 for folder naming USERNAME = 'ahoffman'; % username at ppb110 for folder naming
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% PHYSICAL PARAMETERS %% PHYSICAL PARAMETERS
NU = 1.0; % Collision frequency NU = 1.0; % Collision frequency
...@@ -88,7 +88,7 @@ fprintf(fid,[... ...@@ -88,7 +88,7 @@ fprintf(fid,[...
'#!/bin/bash\n',... '#!/bin/bash\n',...
'#SBATCH --job-name=',CLUSTER.JNAME,'\n',... '#SBATCH --job-name=',CLUSTER.JNAME,'\n',...
'#SBATCH --time=', CLUSTER.TIME,'\n',... '#SBATCH --time=', CLUSTER.TIME,'\n',...
'#SBATCH -n=', CLUSTER.NODES,'\n',... '#SBATCH -n ', CLUSTER.NODES,'\n',...
'#SBATCH --mem-per-cpu=', CLUSTER.MEM,'\n',... '#SBATCH --mem-per-cpu=', CLUSTER.MEM,'\n',...
'#SBATCH --error=err.txt\n',... '#SBATCH --error=err.txt\n',...
'#SBATCH --output=out.txt\n',... '#SBATCH --output=out.txt\n',...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment