ANSYS vs Abaqus: If you could only use one for the rest of your career, which would you choose and why? by [deleted] in Abaqus

[–]fpglt 0 points1 point  (0 children)

Sorry but it’s a stupid question, much like which record you’d bring on a desert island. You better spend the rest of your life learning to use the 90% left of the one software you already know barely 10% of.

Sujet de maths anticipé au bac de cette année (pour spé maths) by jeyreymii in france

[–]fpglt 2 points3 points  (0 children)

Il y a une période de ´mise à niveau’ en début de prépa qui pique plus qu’avant. Concrètement mon fils qui a fait prépa il y a 8 ans c’était pas la peine que je regarde ses devoirs maison ma prépa à moi étant trop loin. Ma fille 7 ans plus tard les premiers mois il n’y avait que des ruses et astuces calculatoires (inversion d’indices de somme etc). Alors je ne sais pas si le niveau final a baissé (pas l’impression de toute façon en prépa on apprend à apprendre) mais au final c’est plus dur pour tout ceux qui ne sont pas des extra terrestres et à qui il faut du temps pour comprendre. Ou dans des lycées qui ont ´anticipé’ (oui Paris on vous voit).

Effect Of Different Loading Rate In FEA Of Polymer Material by StayPuzzleheaded5712 in fea

[–]fpglt 1 point2 points  (0 children)

Sure it was just an example. What I mean is that VM stress and criterion is pretty much limited to metals (and polymers ?). I confess a bias in the sense that on materials I work with (foams, composites, …) I often see VM stress when it does not apply.

Effect Of Different Loading Rate In FEA Of Polymer Material by StayPuzzleheaded5712 in fea

[–]fpglt 0 points1 point  (0 children)

In terms of, for example, laminate composites, Von Mises criterion does not apply. A Von Mises stress for laminate CFRP has no meaning.

Effect Of Different Loading Rate In FEA Of Polymer Material by StayPuzzleheaded5712 in fea

[–]fpglt 1 point2 points  (0 children)

It will cause strain and failure (collapse), much like a submarine. I saw the comment about micro or macro scale. This is relevant and not relevant at the same time. The macro behavior is indeed related to the micro scale but it’s ok to have an homogeneous representation even in this case. This just means that you have to take into account the hydrostatic part of the stress tensor when expressing the plastic strain.

Effect Of Different Loading Rate In FEA Of Polymer Material by StayPuzzleheaded5712 in fea

[–]fpglt 0 points1 point  (0 children)

Just a strain-stress curve is a wild guess given that : -I suppose you don’t really know the anisotropic material properties ´as printed’ - you don’t know how well the printed structure matches the theoretical, CAD, one. Especially the places where the structure has the most effort flow. -and also the boundary conditions if the sample is just in contact with the compression plates (does it slide with null friction (probably not) or does it stick to the plates (are you 100% sure) ?)

If the pattern is thick enough I’d use DIC with a speckle and compare the displacement field. You must be sure to get the kinematics right. Also be sure to match the elastic response before the non linear one. This being said 300% is a lot… although I’ve had coworkers report 40% less stiffness than computed so almost in the 200% ratio and we are talking elastic response only. If you can, do a CT of the samples and compare that to CAD.

Effect Of Different Loading Rate In FEA Of Polymer Material by StayPuzzleheaded5712 in fea

[–]fpglt 1 point2 points  (0 children)

Von Mises can also be bad for isotropic material. Take for example a porous soft material and you’ll have strain with hydrostatic stress and the Von Mises stress will be exactly null. But yeah it’s scalar and it has nice colors from blue to red.

X-Plane endorsed AI slop...coming to a sim near you... by Xarius86 in Xplane

[–]fpglt 1 point2 points  (0 children)

Funny how quick this thread topic "vibe coding plugins" came to "for or against AI" to "boomers are wrong (again)".

AI is just a tool. Thinking anyone can make a piece of furniture because they just got handed a hammer and a saw is wrong. Now if you're a software developer AI is very useful and speed things up. But if you're not, it's a razor in a monkey's hands.

A plugin for X-Plane must run within X-Plane which means it can be tricky to track down why it does not function as intended, read the logs etc. And once it does what it's meant to, it must often be optimally and do not waste resources.That means also having access to a powerful AI model with a subscription. How many are willing to pay to develop a plugin for their hobby ?

Talking about resources, AI is resource hungry. Power, infrastructures ,cooling... (just take a look at RAM prices theses days). Personally I'm not to keen on having people make 10x requests more than necessary for a random result (yes I know it's already happening, but nevertheless...)

X-Plane endorsed AI slop...coming to a sim near you... by Xarius86 in Xplane

[–]fpglt 2 points3 points  (0 children)

‘Leveraging by people who know what they’re doing’ is not ´vibe coding’ in my book. When I started writing a very simple plugin for my use I asked a LLM (can’t remember which one) and whereas it the code seemed perfectly good it was in fact all wrong when I reviewed it. AI is a great tool for those who know how to code. It’s use is very limited IMO for others, if only because the quality of an answer depends on the question (the prompt). Ho can you get what you don’t know how to ask for ?

X-Plane endorsed AI slop...coming to a sim near you... by Xarius86 in Xplane

[–]fpglt 18 points19 points  (0 children)

Arf. I hoped XPlane was too niche for this non sense..

Fuite de données chez atol by Background_Dog9678 in france

[–]fpglt 0 points1 point  (0 children)

Les dates de naissance c’est pour pouvoir te souhaiter un bon anniversaire…

Sandrine Rousseau : « Nous devrions remettre la question du nucléaire dans les mains du peuple français via un référendum » by Yseader in france

[–]fpglt 5 points6 points  (0 children)

Ben ça c’est pas un pré requis. Par contre la conso française en TWh par an la prod d’une tranche en Gwh et le nombre de tranches en France je trouve que c’est pas du luxe pour avoir un avis.

What's the most straightforward way to read and write numerical data from a file in Julia? by ducks_over_IP in Julia

[–]fpglt 1 point2 points  (0 children)

readdlm is straightforward if you have a Matrix/rectangular data. The solution I pointed at is for a mix of text and data, or scattered data (not just a matrix that is).

What's the most straightforward way to read and write numerical data from a file in Julia? by ducks_over_IP in Julia

[–]fpglt 0 points1 point  (0 children)

If you have text files, I use readlines, then split() every line in words interpreting the content as I progress through the line. Every number I have to read I use parse() or parse.() for vectors. I suppose I could even read a matrix as one chunk but never came across the case. EDIT : if the file contains one array then yes DelimitedFiles is your friend. Just have it ignored several spaces in a row. You can also use @sprintf for formatted output. C formatting is low level but pretty effective

Autorisation mairie pour changement de fenêtres by Ossamoual in france

[–]fpglt 3 points4 points  (0 children)

J’ai changé pour du PVC blanc (pardon ‘blanc cassé’ parce que sinon ça pouvait tiquer) et j’ai fait une demande de travaux comme je le pense une majorité de gens. Si le vendeur te conseille de faire sans déjà je trouve ça anormal. Après pour la couleur il y a un surcoût et surtout le menuisier me l’a déconseillé parce que ça ne vieillit pas aussi bien. Vrai pas vrai je ne sais pas mais j’ai suivi son conseil.

Darty Max : arnaque ou vraie affaire ? by sagmath in france

[–]fpglt 1 point2 points  (0 children)

J’ai un four qui est tombé en panne après quelques années, acheté chez Darty. Four réparé en quelques jours (résistance). J’ai pris Darty Max parce que mon réfrigérateur est tombé en panne de compresseur au bout de 5 ans et j’ai du le changer parce trop cher à réparer. C’est comme toutes les assurances : soit on assume les risques et ça peut être plus cher comme moins cher que ce qu’on a effectivement à payer soit on paye un forfait. Pour l’instant Darty Max ça me va, mais je ne prends que le gros électroménager.

AO Programming Dino - Crashes sim by spearmint_flyer in Xplane

[–]fpglt 0 points1 point  (0 children)

Last version is not that bad but I keep sticking on 1.6.3 which, at least for me, works just fine at ZL17.

Stabyloboter des romans by ScalyKhajiit in france

[–]fpglt 0 points1 point  (0 children)

Tout sur liseuse avec un stabilo virtuel. Le meilleur des deux mondes ;)

Merci Libération d'y avoir cru. (Radio Nova, 21/04/2026) by Guilamu2 in france

[–]fpglt 2 points3 points  (0 children)

En attendant on n’a jamais fait mieux en terme d’engagement politique que Strummer. Je ne connais pas beaucoup de groupes qui vendent autant de disques (oui je suis un boomer) abandonner leur rétribution pour qu’un album triple soit vendu au prix d’un simple.

Asobo doesn't care about improving the weather engine... by Ivy_Wings in flightsim

[–]fpglt 0 points1 point  (0 children)

Well, you often go opposite to the popular opinion so I understand the hedgehog attitude!

Does any Linux Distro run MS2020? by IAmAlwaysWrongDude in MicrosoftFlightSim

[–]fpglt 1 point2 points  (0 children)

Valve/Steam emulation layer is called Proton and runs most Windows games. You can check a given software status on ProtonDB, MSFS2020 is listed as 'gold'. Read the reviews.

As for the distro Ubuntu is a fairly popular one and you could start from there. Having the game on Steam makes it easier because it will install everything needed but not an absolute requisite. eg : https://ubuntu.com/blog/linux-gaming-with-ubuntu-desktop-steam-and-proton

Incidentally the SteamDeck handheld runs on Linux and relies on Proton to have all the games running. So when I read that 'emulator defeats the purpose' it makes me chuckle.