tAdd dependencies for variable runs - cngf-pf-exp1 - experiments for first paper with continuum granular model
 (HTM) git clone git://src.adamsgaard.dk/manus_continuum_granular1_exp
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 4094800486ea9f53af7cbc2ab69682410105a9cc
 (DIR) parent f550f3902efd1e03ea9d97e031fe5338229cd250
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Thu, 26 Mar 2020 12:44:56 +0100
       
       Add dependencies for variable runs
       
       Diffstat:
         M flux_estimate/Makefile              |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/flux_estimate/Makefile b/flux_estimate/Makefile
       t@@ -28,7 +28,7 @@ TARGET_VOL = 5.34e11
        # time required to reach TARGET_VOLUME [a]
        YEAR_DURATION_STEADY != awk -v t=$(TARGET_VOL) -v v=$(YEARLY_VOL_STEADY) "BEGIN { print t/v }"
        
       -default: steady variable_flux
       +default: steady variable_flux variable_flux_hi
        
        steady:
                # steady state hydrology
       t@@ -45,7 +45,7 @@ variable.output00048.txt:
                        -e $$(echo 3600.0*24.0*2.0 | bc -l) -I 1800.0 \
                        variable
        
       -variable_flux:
       +variable_flux: variable.output00048.txt
                # variable water-pressure, low amplitude
                @avg_spec_flux=$$($(SHEARFLUX) variable.output*.txt | awk '{sum+=$$1} END{print sum/NR}') && \
                        avg_flux=$$(awk -v avg_spec_flux="$$avg_spec_flux" "BEGIN { print $(WIDTH)*avg_spec_flux }" ) && \
       t@@ -64,7 +64,7 @@ variable_hi.output00048.txt:
                        -e $$(echo 3600.0*24.0*2.0 | bc -l) -I 1800.0 \
                        variable_hi
        
       -variable_flux_hi:
       +variable_flux_hi: variable_hi.output00048.txt
                # variable water-pressure, high amplitude
                @avg_spec_flux=$$($(SHEARFLUX) variable.output*.txt | awk '{sum+=$$1} END{print sum/NR}') && \
                        avg_flux=$$(awk -v avg_spec_flux="$$avg_spec_flux" "BEGIN { print $(WIDTH)*avg_spec_flux }" ) && \
       t@@ -84,4 +84,4 @@ clean:
                find . -type f -name 'variable.output*.txt' -delete
                rm -f variable_flux
        
       -.PHONY: default steady clean
       +.PHONY: default steady clean variable_flux variable_flux_hi