New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
i.pseudo.f90 in vendors/XMLF90/current/doc/Examples/wxml – NEMO

source: vendors/XMLF90/current/doc/Examples/wxml/i.pseudo.f90 @ 1967

Last change on this file since 1967 was 1967, checked in by flavoni, 14 years ago

importing XMLF90 vendor

File size: 381 bytes
Line 
1program pseudoxml
2!
3! Converts legacy Froyen-style pseudo files to XML
4!
5use m_pseudo_utils
6
7type(pseudopotential_t)  :: pseudo
8
9call pseudo_read_formatted("PSF",pseudo)
10!
11! Complete the information in the data structures if possible
12!
13call pseudo_complete(pseudo)
14call pseudo_header_print(6,pseudo)
15!
16! Output XML
17!
18call pseudo_write_xml("PSXML",pseudo)
19
20end program pseudoxml
21
22
23
Note: See TracBrowser for help on using the repository browser.