Pau Cunillera Bori
Subscriber

oh... make sense. It continued the tracer sim from the last time point of the initial values file where the tracer expression was already 0... I'm solving it now and seems it is working. Let's see :)

 

How Can disselect the "Continue History From" option in a CCL? I'm sending the simulation to a University cluster using the following file: 

#!/bin/sh
# embedded options to bsub - start with #BSUB
# -- Name of the job --
#BSUB -J tracer_500rpm2
# -- specify queue --
#BSUB -q hpc
# -- estimated wall clock time (execution time): hh:mm --
#BSUB -W 48:00
### -- specify that we need 2GB of memory per core/slot -- 
#BSUB -R "rusage[mem=2GB]"
# -- number of processors
#BSUB -n 32
# --specify that the cores MUST BE on a single host! --
#BSUB -R "span[hosts=1]" 
# -- user email address --
# please uncomment the following line and put in your e-mail address,
# if you want to receive e-mail notifications on a non-default address
##BSUB -u s222746@dtu.dk
# -- mail notification --
# -- at start --
#BSUB -B
# -- at completion --
#BSUB -N
# --Specify the output and error file. %J is the job-id --
# --  -o and -e mean append, -oo and -eo mean overwrite --
#BSUB -oo cfx_18_IMPIC_%J.out
#BSUB -eo cfx_18_IMPIC_%J.err
 
#example of ansys command line call
/appl/ansys/2023R2/v232/CFX/bin/cfx5solve -def 500rpm_tracer.def -continue-from-file new_tracer_001.res -start-method "Intel MPI Local Parallel" -size 1.5 -part $LSB_DJOB_NUMPROC -pri 1 -double -batch

 

Â