Bar Element - Coding in Python

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

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

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

    I think there are very people few who can convey thier message so cleanly. You are one of them I would say. Thanks for the video. It would be nice of you if you make further videos on related to 2d problems.

  • @Manuel48437
    @Manuel48437 6 лет назад +8

    This is incredibly useful, keep doing this great videos. You should consider doing this series of deriving the stiffness and mass matrices, applying the theory to FEM and coding it; also for plates. It would be extremely useful. (btw, subscribed :P)

    • @goktugklc3975
      @goktugklc3975 3 года назад +1

      I definitely agree. Applying FEM for plates would be extremely helpful.

  • @azizbazoune6954
    @azizbazoune6954 3 года назад +1

    Well and beautifully done Andrew .... Keep the excellent work going on ....!!

  • @lpereira95
    @lpereira95 3 года назад

    Just a small improvement: when removing the fixed degrees of freedom, we should do `for dof in reversed(sorted(restrained_dofs))` in order to make sure we delete the right dofs when we have several restrained dofs. Keep up the great work!

    • @Freeball99
      @Freeball99  3 года назад +1

      Yes, that's good advice in general. I didn't want to get into that for such a simple problem.

  • @eduserenza
    @eduserenza 5 лет назад +2

    Very Nice, Now I'll start to program a code FEM on Python. I'm a matlab user.

  • @sergiorios987
    @sergiorios987 5 лет назад +1

    Wow the best channel I ever have seen, Subscribed right now

  • @apoorvsom.5656
    @apoorvsom.5656 3 года назад

    Need more videos on FEM!!!!

  • @Ptr-NG
    @Ptr-NG 5 лет назад

    That was clean! Many thanks indeed!

  • @berkhacimolla6063
    @berkhacimolla6063 4 года назад +2

    great job man!

  • @olumidemakinde9491
    @olumidemakinde9491 6 лет назад

    Nice Stuff. Keep up the good work...

  • @kareemaboayanah2666
    @kareemaboayanah2666 5 лет назад

    Thank you for your helpful video

  • @CoconutSundae
    @CoconutSundae 7 лет назад +3

    Excellent walk through, really helped with numpy and the basics of engineering style FE.
    Would the code for a 2D problem concerning fundamental frequencies of a plane, say, look more or less the same?

    • @pedromoresco93
      @pedromoresco93 6 лет назад +1

      Give it a try in a Edx Python for Scientific Research, it will give u a good basis on the scientific libraries. For the FEA programming, try the MATLAB for FEA, I pretend to 'translate' it to Python, but it will take a while, but almost all the MATLAB's functions can be emulated in some way in Numpy. See ya.

  • @thedailywiss
    @thedailywiss 4 года назад

    Hi!thank you for the video .I am trying to code finite element with a thermal problem on python .Would you like to help me ?

    • @Freeball99
      @Freeball99  4 года назад

      I can try though I'm a little rusty on Heat Transfer.

    • @thedailywiss
      @thedailywiss 4 года назад

      @@Freeball99 thank you very much for your answer, i have resolved it .

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

    How can we calculate error when we do not the actual answer? If we know the actual answer why do we need to run FE code?

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

      We can calculate the maximum possible error without actually knowing the measurement. If I have a stopwatch that measures times within 0.1s, then I know my accuracy is within 0.1s - even without having measured the duration of an event. Also, I would then know that it was impossible to get accuracies of 0.01s with this stopwatch - regardless of what I was measuring.

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

      @@Freeball99 thank you so much. It makes more sense now. I passed FEM and it was so theoretical that I didn’t get the deep understanding of it! which textbooks would you recommend?