You have used the generateTS function and you wish to generate more time series. Instead of re-running generateTS you can use regenerateTS, which generates timeseries using the parameters previously calculated by the generateTS function, and thus it is faster.
Examples
library(CoSMoS)## define marginal distribution and arguments with target## autocorrelation structurex <- generateTS(margdist ='burrXII', margarg = list(scale =1, shape1 =.75, shape2 =.25), acsvalue = acs(id ='weibull', t =0:30, scale =10, shape =.75), n =1000, p =30, p0 =.5, TSn =3)## generate new values with same parametersr <- regenerateTS(x)plot(r)