Dear Support Team,
For example, I have five phases of embankment staged construction with Plastic calculations:
After successful calculation I would like to calculate the same phase sequence (the same five stages), but with Consolidation type of calculation (or another activated structures). An alternative solution, like this:
Maybe, it is not very difficult for five phases, but it can be an issue to set the same 15–20 phases manually.
Could you please inform me whether it is possible to copy phase sequence?It is interesting to copy activated geometry and phase settings. Maybe we have possibilities of regenerate, set, groupfiltered and apply options for optimisation.
Great thanks in advance.
communities.bentley.com/.../760706
Hi,I am writing the following code to create 10 stages with Dynamic consolidation and a Dynamic time interval of 0.5 sec. However, after creating the stages, I am getting the Dynamic time interval as zero. Can you please help?
for _ in range(1): newphase = g_i.phase(g_i.Phases[-1]) newphase.DeformCalcType = newphase.DeformCalcType.dynamicwithconsolidation newphase.DeformTimeIntervalSeconds = newphase.DeformTimeIntervalSeconds=0.5 newphase.MaxStepsStored = newphase.MaxStepsStored=10
I suppose, there are not so many users in our country who use command line in PLAXIS (all the more Python). On the other hand I realise that it is powerful instrument for optimisation and automatisation of routine process. In this case PLAXIS has a great advantage in comparasing to other competitors. That's why I try to provide this information to our clients.
. .
Dear Bahia,
For this, you need to perform an iteration as the one described below. As you can see here this is done with the range function, but you can extend this process in a function you create by making the number of iterations as a variable.
The example below will run 10 times and will create 5 sequences of two phases, ensuring the correct parent phase is set. Note that the two reference phases should be correctly configured, before running the code below.
If you need more assistance with this please submit a service request: https://apps.bentley.com/srmanager/ProductSupport
for i in range(10): g_i.phase(g_i.Phases[-2]) g_i.Model.CurrentPhase = g_i.Phases[-1] g_i.Phases[-1].PreviousPhase = g_i.Phases[-2]
I have a horizontal moving load,
the first phase should be inward and 2nd phase should be outward. so I activated the inward load in phase 1 and deactivate the outward load in phase, and in phase 2 the contrary activates outward and deactivate inward
and I have to repeat these loading cases for 500 times.
thanks