FEA Tutorial Error(OBJ.FILE1)

Hello altogether,
attached code (from the AnyBody Tutorials Lesson 3: Abaqus Interface — AnyBody Tutorials v7.3.4)

  AnyBodyStudy Study =
  {
    // Include the Model within the Study
    AnyFolder &Model = .Model;  
    tEnd = 10.0;
    Gravity={0.0, -9.81, 0.0};
    nStep = 5; 
    
    // Overdeterminate solver is needed while using the 
    // soft default mannequin drivers.
    Kinematics.SolverType = KinSolOverDeterminate;
    InitialConditions.SolverType = Kinematics.SolverType;
    
    //=========== AnyFE OutputFile in *.xml format =====================
    AnyMechOutputFileForceExport FE_out = 
    {
      FileName = "files_in/clavload.xml";
      /*NumberFormat = 
      {
      Digits = 15;
      Width = 23;
      Style = ScientificNumber;
      FormatStr = "";
      };*/
      UseRefFrameOnOff = On;
      RefFrame = &.Main.HumanModel.BodyModel.Right.ShoulderArm.Seg.Clavicula.localrefframe;  
      AllSegmentsInStudyOnOff = Off;
      XMLformatOnOff = On;
      Segments = {&.Main.HumanModel.BodyModel.Right.ShoulderArm.Seg.Clavicula};
    };    
  };

gives me the error

ERROR(OBJ.FILE1) :   ClavFE.main.any(71)  :   FE_out.FileName  :  Problem with file :  clavload.xml :  The output data file does not exist and cannot be created.

Do you have any idea why?

OS: Win10

Best Regards,
Max

Hi @maxm

Have you checked that you are trying to create the file inside a read only directory?
And does the files_in directory exist ?

Best regards,
Bjørn
AnyBody Technology

Hi @Bjorn,
thank you for your answer.
I solved the problem by copying the files_in folder into the directory below.
I was not sure about the syntax of "./" or "."

Best regards
Max

This topic was automatically closed 125 days after the last reply. New replies are no longer allowed.