Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mopac: add Spanish translation #13173

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions pages.es/linux/mopac.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# mopac

> MOPAC (Molecular Orbital PACkage) es un programa semiempírico de química cuántica basado en la aproximación NDDO de Dewar y Thiel.
> Más información: <https://github.com/openmopac/mopac>.

- Realiza los cálculos a partir de un archivo de entrada (`.mop`, `.dat`, y `.arc`):

`mopac {{ruta/al/archivo_de_entrada}}
kant marked this conversation as resolved.
Show resolved Hide resolved

- Mínimo ejemplo de trabajo con HF que escribe en el directorio actual y transmite el archivo de salida:
Copy link
Member

Choose a reason for hiding this comment

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

The command example description does not seem to be in imperative. I do not know to re-write it, any ideas or thoughts @kant?


`touch test.out; echo "PM7\n#comment\n\nH 0.95506 0.05781 -0.03133\nF 1.89426 0.05781 -0.03133" > test.mop; mopac test.mop & tail -f test.out`
Loading