Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions docs/Documentation/Applications/Plexos/run_plexos.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,12 @@ $PLEXOS/PLEXOS64 -n 5_bus_system_v2.xml -m 2024_yr_15percPV_MT_Gurobi -cu nrelpl
The example scripts are available [here](https://github.com/NREL/HPC/tree/master/applications/plexos/RunFiles). Please clone the repository to run those examples.

!!! note
The slurm output files generated by PLEXOS may not load correctly because of special characters that PLEXOS output introduces. To remove thoses special characters, open the slurm output file and run the following command
The SLURM output files generated by PLEXOS are a mix of encodings. The simplest way to view the output is to convert it to UTF-8 using the iconv command.

```
# On PC
:%s/<CTRL-2>//g
# On Mac
%s/<CTRL-SHIFT-2>//g
iconv -f UTF-16 -t UTF-8 your_output_file.txt
```
Comment on lines 60 to 62
Copy link

Copilot AI Apr 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The iconv example currently just writes the converted content to stdout; readers may expect a converted file. Consider showing either an explicit output (via -o or shell redirection) or piping to a pager (e.g., | less) since the stated goal is “viewing” the output. Also, other code blocks in this doc use language tags (e.g., bash), so add one here for consistency.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot apply changes based on this feedback


`<CTRL-2>` or `<CTRL-SHIFT-2>` should generate the symbol `^@` that is messing up the output. Please refer to [this stack exchange post](https://superuser.com/questions/75130/how-to-remove-this-symbol-with-vim) for further information


### 1: Basic Functionality Test

The basic functionality test is the same as the example run in the section above. We will
Expand Down