SOLIDWORKS Vs ChatGPT | CAD+AI

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

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

  • @with-Aryan
    @with-Aryan  Год назад +1

    💡 Learn SolidWorks with me💡
    👉 courses.solidworkstutorials.net/webinar-registration?sl=ytvid👈
    Discover the top 5 mistakes every SOLIDWORKS beginner makes and how you can avoid them to accelerate your learning!

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

      موفق باشی آرین ویدیو های خوبی میسازی

  • @bassboostedstatus6681
    @bassboostedstatus6681 Год назад +1

    If i want to start youtube channel in designing so i want to use paid solidwork software or cracked work on ???
    Pls answer
    Thank you

  • @suekuan1540
    @suekuan1540 3 месяца назад

    How did you acquire all the knowledge of using solidworks? How long does it take from beginner to pro?

  • @danield_c_3078
    @danield_c_3078 Год назад +1

    Hi Aryan , got question about the setup.
    Do you think a ultra-wide monitor i a a game changer?
    Can you share info about your setup or make a dedicated video about pro/cons of the setups and device(muose/keyboard) you tried over your career?
    Thanks

    • @with-Aryan
      @with-Aryan  Год назад

      I use an U-wide monitor and its working amazingly for me. It made me mroe productive. not just for SW part, but for every day use having multi tabs and windows open in parallet and cross working. so yeah, it does help and for SW, it stretch the area as much as I want to see the smaller details btter (i get to zoom in more)

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

      @@with-Aryan better than a double monitor setup ?

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

      @@with-Aryan thanks again for your reply really appreciated 🤝

  • @salvador1683
    @salvador1683 Год назад +2

    Hi! Its unrelated but can you do a video about solidworks pdm? Plzzzzz

    • @with-Aryan
      @with-Aryan  Год назад

      but there are already so many videos on that on RUclips. Why? are they not good?

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

      @@with-Aryan I myself didnt find one good video that explains everything. In addition I heard about GrabCad shutting down and am interested in how the indestry works with version control and files sharing. Plus, i really like your videos and how you explain things. I think you'll do it in the best way

  • @anasassi1661
    @anasassi1661 Год назад +1

    Can you tell us how to get the solidworks certification and how to be prepared for it ? Thanks

    • @with-Aryan
      @with-Aryan  Год назад +1

      courses.solidworkstutorials.net/ yes, check my page

  • @artsandoval2615
    @artsandoval2615 Год назад +1

    Aryan--just stumbled upon your channel--loving it. I run a team of mechanical engineers that use solidworks. solidworks cloud question: does it allow more than one person modify the same part at the same time? OnShape is pushing that feature over solidworks cloud...any knowledge there?

    • @with-Aryan
      @with-Aryan  Год назад +1

      Of course! if you give access to more than one person on one project, you can manage their access and what they can control.

  • @edwinjsamuel
    @edwinjsamuel Год назад +1

    Do you have a video showing camera and lighting setup?

    • @with-Aryan
      @with-Aryan  Год назад

      I could do that, but I don't at the moment

  • @hermannrudas
    @hermannrudas Год назад +3

    I think no matter how capable could Chat-Gpt become in the future, you'll never be replaced because you are a True Master.

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

      Fr

    • @with-Aryan
      @with-Aryan  Год назад +1

      Damn man that so cheesy and I do appreciate it lol. I don't know. I think one way to survive is to become a brand of your own. Just a guess

  • @MohitChauhan-bn3rq
    @MohitChauhan-bn3rq Год назад +1

    Awesome video sir

  • @Mistu_2k22
    @Mistu_2k22 Год назад +1

    Can you tell me how i count the part in solidwork assembly by searching component.

    • @with-Aryan
      @with-Aryan  Год назад

      Count the numbers or what?

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

      @@with-Aryan yes total no. of quantity of child part by selecting particular component.

  • @neeldhawan3943
    @neeldhawan3943 Год назад +1

    Hey Aryan,
    I remember in an older video you were talking about creating a video which would be on building something based on an idea. On what steps you need to keep in mind when creating a part when you don’t have a DWG to model.
    I was wondering if you are still planning on making that video?

    • @with-Aryan
      @with-Aryan  Год назад

      what what what? that's sounds interesting, what idea was that?

  • @孙小圣-d8u
    @孙小圣-d8u 4 месяца назад

    如何用语音配合ChatGPT来驱动Solidworks工作?

  • @syedatif8159
    @syedatif8159 7 месяцев назад

    Hi. I want to convert some stl files to step in solidworks premium 2022. i have tried every possible way but the results are not satisfactory. i get the step files objects with facets but not smooth. Any suggestion how to fix this. regards

  • @BSneider10
    @BSneider10 Год назад +2

    Amazing video!! Good job Aryan !!

  • @renaldoeshwill2649
    @renaldoeshwill2649 8 месяцев назад

    Thank 🙇 you

  • @CrankyMankey
    @CrankyMankey Год назад +1

    In an assembly, is there way to save each component separately as a STEP file without manually opening each part?

    • @with-Aryan
      @with-Aryan  Год назад

      only through writing a macro and running it in the Macro Editor in SOLIDWORKS inside tools>macro>n new
      And if you wan the code for that:
      Option Explicit
      Sub main()
      Dim swApp As SldWorks.SldWorks
      Dim swModel As SldWorks.ModelDoc2
      Dim swAssy As SldWorks.AssemblyDoc
      Dim vComps As Variant
      Dim swComp As SldWorks.Component2
      Dim i As Long
      Dim errors As Long
      Dim warnings As Long
      Dim bRet As Boolean
      Set swApp = Application.SldWorks
      Set swModel = swApp.ActiveDoc
      Set swAssy = swModel
      vComps = swAssy.GetComponents(True)
      For i = 0 To UBound(vComps)
      Set swComp = vComps(i)
      bRet = swComp.GetModelDoc2.SaveAs4(swComp.GetPathName & ".step", 0, errors, warnings)
      Next i
      End Sub

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

      @@with-Aryan Thank you! You're a great help to us all.

  • @zaidmughal9243
    @zaidmughal9243 Год назад +1

    sir i made a curve in 2d on solidworks with the help of project curve command but i want to extrude it but it cant, can you please tell me that this command(project curve ) is only applicable to make circular profiles?

    • @with-Aryan
      @with-Aryan  Год назад +1

      The Project Curve command in SolidWorks is used to create a curve by projecting an existing sketch, face, plane, or surface onto another face, plane, or surface. It's not limited to creating circular profiles; it can create a variety of curve shapes depending on the geometry you're projecting and the surface you're projecting onto.
      However, if you're having trouble extruding the curve you've created with the Project Curve command, it might be because the curve is not closed or not planar. In SolidWorks, you can only extrude closed, planar sketches.
      Here are a few things you can try:
      Check if the curve is closed: If your curve is not a closed loop, you won't be able to extrude it. You can close the curve by adding additional sketch entities to connect the endpoints.
      Check if the curve is planar: If your curve is not on a single plane, you won't be able to extrude it. You can try creating a new sketch on a plane that intersects the curve, and then use the Convert Entities command to copy the curve onto the sketch. You should then be able to extrude the sketch.
      Use the Split Line command: If you're trying to create a raised or recessed feature on a surface, you might want to use the Split Line command instead of trying to extrude the curve. The Split Line command can divide a face into multiple separate faces, which you can then manipulate individually.

  • @mehryar.
    @mehryar. Год назад +6

    This is a great video. Keep up the good work

  • @fahmimbarki1331
    @fahmimbarki1331 Год назад +1

    Hi Aryan
    Im not an engineer, iam a student
    But sometimes i need to build something from skratch in solidworks. I have the problem of not getting the dimensions of my components match is other.
    Can u help me with that please?

    • @with-Aryan
      @with-Aryan  Год назад

      you have to start learning about the multi-body design mode in SOLIDWORKS so you won't need measurements. You do, but it's all arbitary so you won't get it wrong basically. THis is not easy to adress over a comment to be honest. But there is that

  • @ajeesh3485
    @ajeesh3485 Год назад +1

    hi there. is it possible to show the range motion of an assembly in 2d in solidworks? like if i have a box can is show the state of door closed and open in a single drawing so that i can show much space it takes when the door is opened and closed.

    • @with-Aryan
      @with-Aryan  Год назад

      Yes, it's possible to show the range of motion of an assembly in SolidWorks using configurations and drawing views. Here's a simplified step-by-step guide on how you can do this:
      Create Configurations: In your assembly file, create two configurations - one for the door closed and one for the door open. You can do this by going to the Configuration Manager (right-click on the top item in the FeatureManager and choose "Add Configuration"), give it a name (like "Door Open" and "Door Closed"), and then adjust your assembly to match the configuration.
      Save Assembly: Save your assembly after creating the configurations.
      Create a New Drawing: Now, create a new drawing from your assembly file (File > New > Drawing).
      Insert Views: In the drawing, you can insert two views of your assembly, one for each configuration. Go to Insert > Drawing View > Model, and in the Properties dialog box that appears, select the configuration you want to use for that view. Repeat this step for the second configuration.
      Position Views: Position the views so that they clearly show the range of motion of the door. You can also add dimensions or notes to indicate the space required when the door is opened and closed.
      Remember, this is a simplified guide. Depending on the complexity of your assembly, you might need to use more advanced techniques. But this should give you a good starting point.

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

      @@with-Aryan thanks for your time

  • @anasassi1661
    @anasassi1661 Год назад +2

    I like the fact that you don't care about the comments more than you care about the value that you give
    Keep it up 🙌❤

    • @with-Aryan
      @with-Aryan  Год назад +1

      Thanks man. I do read the comments though

  • @ThugByChoice
    @ThugByChoice Год назад +2

    ChatGPT just tells me but you show me. That’s still better.

    • @with-Aryan
      @with-Aryan  Год назад

      Love that answer! There is still use for me in this world lol

  • @GiantsOnTheHorizon
    @GiantsOnTheHorizon 28 дней назад

    This seems like it could be a really interesting experiment to use ChatGPT with openscad.

  • @myyoutubewatchmail
    @myyoutubewatchmail Месяц назад

    i dont think you need clickbait bro your content is already good

  • @StevenHennessey-ks4mz
    @StevenHennessey-ks4mz 9 месяцев назад

    You're voice is familiar did you make a 8 chapter solidworks video course?

    • @with-Aryan
      @with-Aryan  9 месяцев назад +1

      5 chapter! courses.solidworkstutorials.net/

    • @StevenHennessey-ks4mz
      @StevenHennessey-ks4mz 9 месяцев назад

      @with-Aryan unfortunately I don't have the money to pay for the course otherwise I'd sign up 😕

    • @with-Aryan
      @with-Aryan  4 месяца назад

      where? 6 chapter

  • @Callm3lazy
    @Callm3lazy Год назад +1

    When taking your course, how do I install solidworks? Do you provide with a free version to learn it through your course?

    • @with-Aryan
      @with-Aryan  Год назад

      hey, go to the 0.5 section inside the course and you'll see the instructions on how to do just that ;)

  • @JSprayaEntertainment
    @JSprayaEntertainment Год назад +1

    hmmmm..... we want a CAD that works with ai , and we just talk to it ..

  • @arian6812
    @arian6812 Год назад +1

    خوشحالم که ایرانی هستی

  • @elijahroyaie
    @elijahroyaie Год назад +1

    nah you explaining it is way better that ChatGPT raw information. Raw information was here since books were invented

  • @8888888vinay
    @8888888vinay Год назад +1

    Can we modify a solid work file in xdesign?

    • @with-Aryan
      @with-Aryan  Год назад

      Last time I checked (about 2 months ago) yes, but you couldn't open the xDesign in local SW. so if you want to edit it there, you can but once you save it, you cannot bring it back to local. idk if they have changed this since then

  • @alexguilherme5652
    @alexguilherme5652 Год назад +1

    20 doletas for me, Brazilian, is equaly to give up 10% of my payment haha

    • @with-Aryan
      @with-Aryan  Год назад

      if you could partner up with a friend to use one account both of you. 5%, I'd say it's a worthy investment to how much advancement it will bring you.

  • @88farrel
    @88farrel Год назад +1

    Man i wish i own solidwork. But i cannot affort 10K dollars

    • @LateNightRituals
      @LateNightRituals Год назад +1

      School will give u for free

    • @with-Aryan
      @with-Aryan  Год назад

      some schools, not all.

    • @with-Aryan
      @with-Aryan  Год назад

      If you become my student in SCP, you can purchase on for $99!

  • @stickmanland
    @stickmanland 11 месяцев назад

    Can you make a video about simulation in solidworks. I have searched youtube, but no video matches, or even comes close to your teaching style. You walk us through and *explain* to us, instead of just doing it.

    • @with-Aryan
      @with-Aryan  11 месяцев назад

      That is my next plan, first modeling, then GD&T for manufacture, now simulation to ensure whatever you model will not fail in real life.

  • @mohdzaidansari5860
    @mohdzaidansari5860 Год назад +1

    you are a great techer but your course too expensive i can not effort

    • @with-Aryan
      @with-Aryan  Год назад

      I do offer installments! do they help?

  • @metricdeep8856
    @metricdeep8856 Год назад +1

    No.

    • @with-Aryan
      @with-Aryan  Год назад

      I do not understand your reply, are you for or against AI?

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

      @@with-Aryan The answer to your title.

  • @litma1000
    @litma1000 5 месяцев назад

    No way till 2037 :)

  • @rapbeatguruz88
    @rapbeatguruz88 Год назад +1

    🤣🤣🤣🤣🤣thank u for asking chat gpt

    • @with-Aryan
      @with-Aryan  Год назад

      no problem! do you have GPT4? Many still don't!

  • @renaldoeshwill2649
    @renaldoeshwill2649 8 месяцев назад

    Thank 🙇 you

    • @with-Aryan
      @with-Aryan  8 месяцев назад

      thanks for watching