C_R

3577 Reputation

21 Badges

6 years, 96 days

MaplePrimes Activity


These are replies submitted by C_R

@Thomas Richard 

All warnings are useful. At least I want to see them once.

This particular warning sometimes appears and sometimes in similar cases without masses it does not. In most of my cases it can be ignored.

If this warning can’t be reset by design and there are no GUI issues hiding menu items, my question has been answered.

In this case I find I find this tip from help(MapleSimUserGuide,Chapter02) misleading:

If warnings to be reset are labeled with a yellow triangle, I would expect that a warning labeled with a yellow triangle can be ignored as well.

Thank you for the clarification.

Your question and finding are worth being converted into a post. Could you share and example?

@Nicole Sharp 

Good to hear. If this is reproducible what you found out Maplesoft can have a look at it. Maybe there is a solution for mobile users.

This bug is older than 2023, I have it from time to time. Restarting always works, but that's not what you want do when you're in the middle of something.

One of my suspicions is that it happens when the display settings change. For example, when you disconnect an external monitor from a laptop. 

Another possibility is that it is related to the load on the system (applications running in parallel, number and history of mservers managed by the Maple GUI or the time and history since last logon). 

In both cases it is related to the operating system and may not be a programming bug, but something that depends on Microssoft and/or the OpenJDK platform.

Your observation (new to me) that it depends on maximising the GUI Window points rather to the first susspicion.

 

@acer
Yes, exactly!

@Maxie 

The model I have send to you must have changed its state when it was saved.

In the model I have send to you to make it simulate, try chaning the EC to:

This should assemble and allow you to inspect the model.

As I have said the model does not assemble correctly. You should fix this first.

4_fix-3.msim

Here is another good video https://www.youtube.com/watch?v=4c0dbvAMrAU on custom contact components. I would try to combine it with a classical analytical formula for beam deflection.

To start I would use the deflection for a "Simply Supported, Intermediate Load" as given here

https://mechanicalc.com/reference/beam-deflection-tables

(I cannot guarante if these formulas are correct.)

@Maxie 

I have fixed your model in the sense that its simulating.

At a frist glance the rails and the sleepers are not assembled as you intended.

Furthermore, the axle falls off the rails.

You cannot use a single contact element (rectangle) for the entire flexible beam to realistically describe a traveling load. As you have done it the rail already deforms when the load is above the sleeper.

Overall the problem you have choosen is at the limit of the components of MapleSim libraray. I think a solution is possible with custom components.

If you are entitled consider also contacting Maplesoft support for advice.

4_fix.msim

@acer You are correct. A thetrahedron has 4 surfaces. 5 was from my first answer which I had to correct.

z<=1 and y<=z eliminate y<=1 (which I will do now in my update above).

In this question you will find an elegant way from the user Kitonum to plot the bounding surface of a cube which is

plots:-implicitplot3d(max(-x,x-1,-y,y-1,-z,z-1), x=-0.5..1.5, y=-0.5..1.5, z=-0.5..1.5, style=surface, axes=normal, grid=[100,100,100]);

The three inequalities (i.e. all points within the bounding surface and including the bounding surface) describing the cube as solid are

0<=x <= 1
0<=y <= 1
0<=z <= 1

This that what you are looking for?

@Maxie 

Without model its difficult to tell why forces are constant. If this is related to a question that I have seen but  has disappeared, consider adding it to this thread.

Here are two models which might help you with your problem.

The first is a (rigid) beam under a moving load. The second is not available for immediate download and you have to contact Maplesoft but its worth a try.

And: A rail with multiple (>2) sleepers must be overdetermined. What exactly do you mean with "the rail is supported by multiple sleepers without over-constraint".

@mmcdara 
Your idea is worth discussing. I have seen that it (screen shot instead of code) just happend again.

Perhaps a post would be better to gather more ideas.

You have to be more specific what you want to analyse.

If it is a mechanical problem you want to analyse:

The load case (e.g. bending) and the geometry would be helpfull.

Do you have drawings or a sketch?

It would be nice if convert/unit would offer

  1. symbols as yours for degrees minutes and seconds
  2. a compound output as yours

Here is what is possible with 2023

45.2365*Unit('arcdeg')

45.2365*Units:-Unit(arcdeg)

(1)

trunc(45.2365*Units:-Unit(arcdeg))

45*Units:-Unit(arcdeg)

(2)

frac(45.2365*Units:-Unit(arcdeg))

.2365*Units:-Unit(arcdeg)

(3)

convert(.2365*Units:-Unit(arcdeg), units, arcmin)

14.1900*Units:-Unit(arcmin)

(4)

trunc(14.1900*Units:-Unit(arcmin))

14*Units:-Unit(arcmin)

(5)

frac(14.1900*Units:-Unit(arcmin))

.1900*Units:-Unit(arcmin)

(6)

convert(.1900*Units:-Unit(arcmin), units, arcsec)

11.4000*Units:-Unit(arcsec)

(7)

45*Units:-Unit(arcdeg)+14*Units:-Unit(arcmin)+11.4000*Units:-Unit(arcsec)

45*Units:-Unit(arcdeg)+14*Units:-Unit(arcmin)+11.4000*Units:-Unit(arcsec)

(8)

NULL

(which represents a silent improvement over 2022 where trunc an floor did not work on expressions with units.

Thank you Maplesoft and please continue)

Download degminsec.mw

What version do you use?

restart; with(LinearAlgebra)

A[m] := (x/a)^(i+1)*(1-x/a)^2; B[n] := (y/b)^(i+1)*(1-y/b)^2; w := c[i]*A[m]*B[n]

TPE := (1/2)*(int(int(D__11*(diff(w, x, x))^2+2*D__12*(diff(w, x, x))*(diff(w, y, y))+4*D__66*(diff(w, x, y))^2+D__22*(diff(w, y, y))^2-2*q__0*w, x = 0 .. a), y = 0 .. b))

2*c[i]*(-512*a^4*b^4*i^8*q__0-6144*a^4*b^4*i^7*q__0-29184*a^4*b^4*i^6*q__0+36*D__11*b^4*i^8*c[i]+8*D__12*a^2*b^2*i^8*c[i]+36*D__22*a^4*i^8*c[i]+16*D__66*a^2*b^2*i^8*c[i]-69120*a^4*b^4*i^5*q__0+612*D__11*b^4*i^7*c[i]+168*D__12*a^2*b^2*i^7*c[i]+612*D__22*a^4*i^7*c[i]+336*D__66*a^2*b^2*i^7*c[i]-82368*a^4*b^4*i^4*q__0+4257*D__11*b^4*i^6*c[i]+1482*D__12*a^2*b^2*i^6*c[i]+4257*D__22*a^4*i^6*c[i]+2964*D__66*a^2*b^2*i^6*c[i]-38016*a^4*b^4*i^3*q__0+15570*D__11*b^4*i^5*c[i]+7068*D__12*a^2*b^2*i^5*c[i]+15570*D__22*a^4*i^5*c[i]+14136*D__66*a^2*b^2*i^5*c[i]+9824*a^4*b^4*i^2*q__0+31959*D__11*b^4*i^4*c[i]+19386*D__12*a^2*b^2*i^4*c[i]+31959*D__22*a^4*i^4*c[i]+38772*D__66*a^2*b^2*i^4*c[i]+13920*a^4*b^4*i*q__0+36198*D__11*b^4*i^3*c[i]+29352*D__12*a^2*b^2*i^3*c[i]+36198*D__22*a^4*i^3*c[i]+58704*D__66*a^2*b^2*i^3*c[i]+3150*a^4*b^4*q__0+20448*D__11*b^4*i^2*c[i]+19048*D__12*a^2*b^2*i^2*c[i]+20448*D__22*a^4*i^2*c[i]+38096*D__66*a^2*b^2*i^2*c[i]+4320*D__11*b^4*i*c[i]-3648*D__12*a^2*b^2*i*c[i]+4320*D__22*a^4*i*c[i]-7296*D__66*a^2*b^2*i*c[i]-8064*D__12*a^2*b^2*c[i]-16128*D__66*a^2*b^2*c[i])/(a^3*(2*i+7)*(2*i-1)*(i+4)^2*(i+3)^2*(2*i+5)^2*(i+2)^2*(2*i+3)^2*(2*i+1)^2*b^3)

(1)

NULL

Download total_PE.mw

@Kitonum 
I have been too hasty. x >= 0 leaves of course two choices for T2. 👍

First 52 53 54 55 56 57 58 Last Page 54 of 70