Hi,
As I understand, Manuel did the job
:)
-----
I also do this shortcuts for the Run using the run menu of the Notepad++,
I don't know if this was added before to the blender plugging but could be a good help also.
The guide to added is:
Whit the Notepad++ closed:
- Go to this location: C:\Users\YOUR_USER_HERE\AppData\Roaming\Notepad++
- replace or modify the archive: shortcuts.xml
The commands that I added:
- The first one is to launch a SMV of the current fds file open in Notepad ++
- The second one is to launch a MPI FDS for 4 processors in the local machine
- the 3th the same but for 5 processors
- the 4th, the same but for 6 processors
- the 5th it's juts a FDS launch for the current fds file open in the Notepad ++
- the 6th,it launches a 6 processors MPI FDS and when it's finished shutdown the PC.
- The 7th, it launches a FDS and when it's finished shutdown the PC
The code for the file shortcuts.xml is:
<Command name="smokeview" Ctrl="no" Alt="yes" Shift="no" Key="119">cmd /K cd /d $(CURRENT_DIRECTORY) && smokeview $(NAME_PART).smv</Command>
<Command name="mpi4" Ctrl="yes" Alt="yes" Shift="no" Key="118">cmd /K cd /d $(CURRENT_DIRECTORY) && mpiexec -n 4 fds $(FILE_NAME)</Command>
<Command name="mpi5" Ctrl="yes" Alt="yes" Shift="no" Key="119">cmd /K cd /d $(CURRENT_DIRECTORY) && mpiexec -n 5 fds $(FILE_NAME)</Command>
<Command name="mpi6" Ctrl="yes" Alt="yes" Shift="no" Key="120">cmd /K cd /d $(CURRENT_DIRECTORY) && mpiexec -n 6 fds $(FILE_NAME)</Command>
<Command name="fds" Ctrl="yes" Alt="no" Shift="no" Key="119">cmd /K cd /d $(CURRENT_DIRECTORY) && fds $(FILE_NAME)</Command>
<Command name="mpioff" Ctrl="yes" Alt="no" Shift="yes" Key="118">cmd /K cd /d $(CURRENT_DIRECTORY) && mpiexec -n 6 fds $(FILE_NAME) & shutdown /s /f</Command>
<Command name="runfdsoff" Ctrl="no" Alt="yes" Shift="yes" Key="118">cmd /K cd /d $(CURRENT_DIRECTORY) && fds $(FILE_NAME) & shutdown /s/f</Command>
And that's all.
I attach the file and a screenshot

Regards!!
Nikolai