https://github.com/pou036/redback
Raw File
Tip revision: a427c9241a00c0e62f0b9c72e13b460526803918 authored by eleni198 on 25 November 2016, 11:04:39 UTC
single fluid mass balance working, work is needed on the material functions, i.e. diffusivity and capillary pressure
Tip revision: a427c92
run_tests
#!/bin/bash

APPLICATION_NAME=redback
# If $METHOD is not set, use opt
if [ -z $METHOD ]; then
  export METHOD=opt
fi

if [ -e ./unit/$APPLICATION_NAME-unit-$METHOD ]
then
  ./unit/$APPLICATION_NAME-unit-$METHOD
elif [ -e ./$APPLICATION_NAME-unit-$METHOD ]
then
  ./$APPLICATION_NAME-unit-$METHOD
else
  echo "Executable missing!"
  exit 1
fi
back to top