Hello Charlotta,
You first need to add the keyword PRESCRIBED TRACERS VALUES in your steering file, giving 4 values (2 boundaries x 2 tracers). Without this keyword the values are taken in the boundary conditions file (tricky I admit...). Then the 4 values will be overwritten by your programmed profiles.
Then to have different profiles on the two boundaries you can use the variable I of function TRA_PROF_Z and nest your two profiles within:
IF(I.EQ.1) THEN
... your profile for boundary 1
ELSEIF(I.EQ.2) THEN
... your profile for boundary 2
ELSE
WRITE(LU,*) 'Hum, boundary ',I,' is not implemented in TRA_PROF_Z'
CALL PLANTE(1)
STOP
ENDIF
With best regards,
Jean-Michel Hervouet