How To Make An Etabs Plugin Using C# | Part 2 - Get Reaction Forces And Load Combinations

Поделиться
HTML-код
  • Опубликовано: 26 окт 2024

Комментарии • 13

  • @فاطمههادیپور-ر5ز

    The training was very useful. I have a question. If we want join reactions that the user chooses in etabs, how should we write its code?

  • @tudothanh0402
    @tudothanh0402 Год назад

    Hi thank you for your great work, can you show how to get story max displacement and story drift. Can you give me any Ideas

    • @k-structuraldesign
      @k-structuraldesign Год назад +1

      ruclips.net/video/7gnUCUN9sJM/видео.html&ab_channel=K-StructuralDesign
      I create this tool to get column forces and its parameter directly from Etabs, then create Prokon file automatically.

    • @k-structuraldesign
      @k-structuraldesign Год назад

      Dễ thôi, dùng cái này: cAnalysisResults.StoryDrifts Method

  • @kartikrajput2053
    @kartikrajput2053 2 года назад +1

    Hi Thanks for your hard work for this important video. I have one query. I followed your steps to develop plugin and it works fine only when i have one ETABS instance open. When i opened the second Etabs window and try plugin in that then it is not taking data from that send window ETABS it is still interacting with the first ETABs window. Did you try that? Do you have any solution for that?

    • @StructuralInsights87
      @StructuralInsights87  2 года назад

      Hi, Sorry for the delay. Anyway, I checked it and it did not occur to me.

  • @entertainmentthedigital3096
    @entertainmentthedigital3096 Год назад

    Hi sir, I hop that you continouslly share your video about using c# make plugin for etabs, especial is get beam force, and calculate rebar for beam. Thanks so much.

  • @StructuralInsights87
    @StructuralInsights87  2 года назад

    Link To Part One:
    ruclips.net/video/udJcLfUJzgE/видео.html

  • @serkangokalp9247
    @serkangokalp9247 2 года назад

    Thank you very much for videos. They are great!
    For Sap2000:
    Following code give error:
    ret = mySapModel.RespCombo.SetCaseList("G", eCNameType.LoadCase, "DEAD", 1.4);
    "eCNameType.LoadCase" seems problem. How do ı fix it?
    Could you kindly help us?
    Thank you in advance...

    • @StructuralInsights87
      @StructuralInsights87  2 года назад

      Hi, First of all make sure that "G" is an existing load combination. if don't write a code to add it. and then you can't just leave "eCNameType.LoadCase" that way this section should be given 0 or 1, Zero for case and One for load combination and also make sure that " DEAD" is also an exsisting case

    • @serkangokalp9247
      @serkangokalp9247 2 года назад

      @@StructuralInsights87
      Thank for your quick answer!
      Following Code works:
      eCNameType cNameType=0;
      ret = mySapModel.RespCombo.SetCaseList("G", ref cNameType, "DEAD", 1);
      ret = mySapModel.RespCombo.SetCaseList("G", ref cNameType, "COVER", 1);
      ret = mySapModel.RespCombo.SetCaseList("G", ref cNameType, "EQP", 1);
      However, when we write for add load combo to in one combo
      eCNameType cNameType=1;
      it give us error. It does not allow us to write 1.

  • @alamengineeringconsultant9205
    @alamengineeringconsultant9205 12 дней назад

    code