Post process output folder not opening

Post process output folder not opening

jm.maskinteknik
Participant Participant
288 Views
2 Replies
Message 1 of 3

Post process output folder not opening

jm.maskinteknik
Participant
Participant

In the past when I posted a setup Fusion would open the output folder then I could name the program and put in  a sub folder

 

Now when I hit post it just goes straight to my  editor, names the program 1001.nc and drops it in the output folder.

 

I  always have changed the output folder to one on my desktop.

 

289 Views
2 Replies
Replies (2)
Message 2 of 3

KrupalVala
Autodesk
Autodesk

HI @jm.maskinteknik ,

 

We will soon introduce a file name field that will allow you to overwrite the output file name while retaining the correct name inside the file.

 

Thanks,

 



Krupal Vala
Senior Technology Consultant - Post Processor & Machine Simulation
0 Likes
Message 3 of 3

ltomuta
Advisor
Advisor

Edit your post, tell it to allow alphanumeric program names and, if your machine does not like them, hardcode a numeric ID to put in the header.

Find

 

programNameIsInteger = true;

 

change this to

 

programNameIsInteger = false; 

 


Find

 

if (programName) {
    var programId;
    try {
      programId = getAsInt(programName);
    } catch (e) {
        error(localize("Program name must be a number."));
        return;
    }

 

and replace with

 

  if (programName) {
    var programId;
    try {
      programId = getAsInt(programName);
    } catch (e) {
        if(programNameIsInteger) {
                error(localize("Program name must be a number."));
                return;
	}
        // keep the machine happy with a number
        programId=10110; 
    }

 

0 Likes