I try to use reliability analysis by using PCK model. 200 experimental data is availabe and there is no explicit function. I write the code as follows:
No model defined!
Error in uq_evalLimitState (line 67)
M_X = uq_evalModel(FullModel,X);
Could you help me to find my mistake?
In fact, I decide to predict the response of generated random variables and then estimate the failure probability. I didn’t find any example which has such process. If there is any example in UQLab examples, please let me know. It could help me to get idea for improving aformentioned code.
If you only have 200 experimental data available and no explicit function to generate more data, I’m not sure that AKMCS is suitable for your problem. It is an adaptive method, which means that more data is generated at locations that are suited for improving the accuracy of the prediction. See Reliability Analysis user manual, section 1.6.1.
In the code that you posted, you add some fields to AKOpts instead of APCKMCSOpts, that’s probably a typo. If you specify your initial experimental design, the line APCKMCSOpts.AKMCS.IExpDesign.N = 5; is unnecessary. But in my understanding, AKMCS will still try to sample 200 additional points (since you specify APCKMCSOpts.AKMCS.MaxAddedED = 200;) and for this, a model is needed. Normally, UQLab automatically uses the last model you defined. But since you don’t define any model, it does not know which model to evaluate to get the additional points.
@nluethen. I have a set of data, which comes from a FEM. I want to use metal-model to establish implicit model, which can improve the efficiency. For computing reliability, I want to use ALR model to get the answer. But I meet the same problem as @Abdollahi. Can you offer a similar example to me using ALR method?
As @nluethen pointed out, it is necessary to provide the true model to be evaluated to enrich the experimental design. In your case with a FEM model, you need to take a look at the UQLink module:
@styfen.schaer. Thank you, sir. I have tried to run uqlink-abaqus-ten-bar-truss in UQLink, but it can not call my Abaqus. Do you know how to connect my UQLink with my Abaqus?
@styfen.schaer Thank you, sir. I have solved this problem. And I want to ask whether there is an example of ABAQUS explicit used in conjunction with UQLink.