Recently active
Please help me what am i doing wrong?Mathcad Prime 11.0.1.0
Creo has neat functionality in the restricted parameter list. Creo also has nice functionality in that you can import an .xml file to add parameters to a Model. It would appear that these two do not play well together. I am trying to update legacy models that have missing parameters and my .xml import was working wonderfully until I updated my restricted parameter.lst file. I get this message: Is there any way to make the import work? Is it a matter of my restrictions in my .lst not EXACTLY matching what I have in the .xml?
HiI am on Creo 10.0.9.0As detailed in the picture below, as I increase the value of the Transparency, opacity increases. Shouldn't it be named to Fill Opacity instead of Fill Transparency?Hope I am not missing anything.
Hello,I want to use Creo for simulations, but I can't access the simulation interface.The button under Application > Simulate is grayed out. The Flow and Mold Analysis buttons are both in color, even though I don’t have a license for Flow Analysis and can’t access the Flow environment.Is this due to the graphics card’s RAM, which is sufficient but not recommended or because the A400 isn't supported?Thank in advance The Hardware Check reports:Your hardware is not qualified for Creo Simulation LiveYour graphic card (GPU) is a supported NVIDIA CUDA based card. However GPU does not have enough video RAM to optimally support Creo Simulation Live.Creo Simulation Live relies on the latest graphics processing unit technology to provide its computation and visual experience and requires the following:A dedicated NVIDIA graphics processing unit card (Quadro recommended) based on the Kepler, Maxwell, or Pascal architecture. Most dedicated NVIDIA Graphics Processing Unit cards produced in 2013
Hello,I am trying to simulate a press-fit snap feature for validation, however when I run the simulation I get the error “Run completed with fatal error”.Following parameters are set:Mesh:Component-component interface (contact), assumed 0 friction (also attempted surface-surface contact with 0.2 COF) Mesh on both parts with 1mm localized elements on snap-features (tetrahedral)Constraints:Prescribed 3mm movement in +Z direction on Part A (to push part A onto part B), fixed in X and Y direction Part B constrained in XYZ directionMaterial Assignments:“Part A” Full-hard stainless steel “Part B” Xantar 22R (PC)Analysis Settings: Section view of snap fit Can anyone assist? Many thanks.
Hi,I am using root function to solve a function for different variables (variables are vectors) but some of these values don’t converge as there is no solution. How can I skip these values that don’t converge and make a table for those values and solve the rest? I have attached the MathCAD zip file. Thank you!!!
I make a hole and create Geometric Tolerance in model, such as 3/8-16 UNC -2B TAP THRU 5/16 DRILL (0.257) .0750 - (1) HOLE. I only can put GTOL as a free note in drawing as shown belowIs there a method to place to a hole note directly?Thanks,
I finally got permission and funding from Da Boss to go this year. Who else is going? If you are, want to schedule a meetup during one of the days?
Hello,Like it says in the title, while placing/replacing a component inside the assembly, the 3D display dragger is not shown despite the fact that the option to show the dragger is selected. Does anyone know what could be the issue. This problem occured when I tried opening the separate component display window.
Hello, I would like to ask if there is any way how to find out in which assemblies is used one particular part. We have a large folder with several similar assemblies. Then there are two versions of similar part, for example. If I open all the assemblies at first, so they are loaded in session memory, I can use reference viewer to find out where is this particular part used. But is there any way how to do this without opening a large number of assemblies? Hope my question is understandable, thanks for replies.
Hi everyone,How can I get the contour points of an X-section such that if I plot the set of points in excel I can get the exact geometrical shape.
I want to know which axis this part can move towards after I cooperate with the constraints. Can this be obtained
Is there a way in Creo Parametric to adjust splines with drag handles, like in Solidworks?I am trying to replicate a part from Solidworks, but I cant get the splines to behave just like in the Solidworks part. I’ve noticed that in the Solidworks feature the splines have ben drawn by draging the lines to the desired position.
This is test Welcome to the PTC Issue Logger
When going to a part, right mouse click > Compare to Part structure, Compare to CAD structure.I'm missing the expand all button, how and where can i enable this button. Documentation says it should be there, i suspect it's been disabled in the past due to performance considerations. Can anyone confirm:1- Does this window have an expand all button, Compare to Part structure, Compare to CAD structure.2- Where can i find the config settings to change this? Thanks.
I am trying to create a flushed flange which goes around the boundary of a sheet metal part. When I try doing this with the flushed flange feature I run into a feature failed to regenerate error. I have tried the one by one standard chain, rule based partial loop/complete loop chains but nothing seems to work. Attached is the part I am trying to work on with the 8.4mm flushed flange and the corner cut at the edge Q.
wchar_t* wcTopName = strTopAssyName.GetBuffer();err = ProMdlnameRename(topAssyModel, wcTopName);if (err == PRO_TK_NO_ERROR) ProMdlSave(topAssyModel);//这里不卡死else AfxMessageBox(_T("总装配模型重命名失败!"));err = ProMdlnameRename(topAssyDrawing, wcTopName);if (err == PRO_TK_NO_ERROR) err = ProMdlSave(topAssyDrawing);//在这个位置发生卡死,保存工程图else AfxMessageBox(_T("总装配工程图重命名失败!"));strTopAssyName.ReleaseBuffer();
I need some cabling support, specifically: I need to run a series of cables through a conduit. I use the route network first, then the route cables. To have them side by side, I copy the network of the first one, at least for the straight segment. What I need is if there's a way, when I route cables, that my cables must fit inside my conduit, so I can set some clearances. If there are a lot of cables and they don't fit within the clearances, please let me know. Basically, I need the same thing you use for the holes; that is, I set the maximum clearance diameter through which certain cables can pass, but instead of circular areas, I need rectangular areas since they're conduits.Thanks in advance.
No question but a tip. I want to have the dimensions of a bush in the parameter SubtitleIf a dimension is rounds to zero, then I don't want that zero in the Parameter subtitle.Example:di = 0.8L = 2.5D = 4 RTOS defaults to rounding to 1 decimal (RTOS is available from Creo 11 and higher)If I would do it that way then it would be SUBTITLE = \ "d" + RTOS(Di)+\ " L" + RTOS(L)+\ " D" + RTOS(D)Which would result in Subtitle == d0.8 L2.5 D4.0 If I would type RTOS(D,0) then it would be "D4"With that knowledge I made an equation for how much decimals I need.Ceil(D - Floor (D))In this case if D = 4,2 it would be 4,2-4 which is 0,2 and it is then rounded up to 1If D = 4,0 then it would be 4,0 - 4 which is 0 and it is then rounded op to 0So then you getSUBTITLE = \ "d" + RTOS(Di,Ceil(Di - Floor (Di))) +\ " L" + RTOS(L,Ceil(L - Floor (L)))+\ " D" + RTOS(D,Ceil(D - Floor (D)))Which would result in Subtitle == d0.8 L2.5 D4But we are not there yet, because in edge cases where you h
Service Temporary Unavailableというエラーメッセージが出て対処方法がわかりません。無償版が使える環境にするにはどうしたらよいか対処方法を教えていただけませんでしょうか?適切なご回答がいただきたいです。
How can I move the arrow position of the dimension using toolkit.Please refer the picture.I didn’t found any specific API.
I recently purchased a student licence for Mathcad Prime 12. After download, unzipping and installation, when I try to open the app, it automaticly crashes. After analyzing it with Eventviewer it seems that the app cannot locate resource 'worksheetresources.xaml'.What can I do about it?
Hi, the server for using direkt modeling express is down therefore i cannot copy an activation key, can you help please?Best Andre
Ive been struggling to creat and report on the same run of modelcheck batchcreo 8.0.9.0 windows 11Ive already tried to input a list with xxx.prt.1 and long after xxx.prt.2 but it didnt work as well.
Hello !I run Creo 9.0.12.0 and I set the config.pro option auto_add_remove to yes. However, it looks like the option is not applied by Creo. No matter what side I move the extrusion arrow, I still have to select “Remove Material” to, well, remove material. Any insight here, please ? Google found nothing so far.Thanks !
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.