AQB Keep Results

I want to perform a non linear stress analysis in two separate modules, first the piers and then the deck. Therefore, I use two separate AQB runs.

Although the AQB code works just fine (see below example for the piers), when I run the second AQB for the deck, it deletes the results of the previous AQB run (the Load Cases that I am using in both AQBs are the same, corresponding to SLS Rare).

Is there a command so AQB does not to delete the previous results?

-PROG AQB urs:53
HEAD PIERS - NON LINEAR STRESS - SLS RARE

CTRL REIN FIX

BEAM GRP #GRP_Piers
LC (#Base_SLS_Rare+1 #Base_SLS_Rare+#Num_LCs_Env_Beam 1)

COMB GMAX LCST #Base_SLS_Rare+96 TITL ‘Piers_SLS_Rare_Max’
COMB GMIN LCST #Base_SLS_Rare+97 TITL ‘Piers_SLS_Rare_Min’

NSTR SERV KSV EL KSB EL CRAC NO CHKR 0.8*#Fyk_Reinforcem[MPa] CHKC 0.60*#Fck_Conc_Piers[MPa]

ECHO FULL FULL

END

You need to save a result for each load case (LC) in a new LC.

When I have a lot of LCs to verify for the AQB calculation, I use this code:

+PROG AQB urs:36
HEAD Vérifications des contraintes ELS_Caractéristique
#INCLUDE CALCUL_BA
IF #nComb_ELS_CARA <> 0
BEAM FROM GRP (801 (800+#Nbr_fondation) 1) TYPE BEAM CS AUTO
loop#i 12
LC 400000+#i
comb sum lc1 400000+#i lcst 400500+#i
$ Dimensionnement ELS_Caractéristique
REIN RMOD ACCU LCR 81
NSTR KMOD SERV KSV SL KSB SL CHKC 0.60 CHKR 0.80
REIN MOD SECT RMOD SING LCR 101 titl ‘Vérifications des contraintes ELS_Caractéristique’
endloop
ENDIF
END

Abderrahman OMRI.