1
0
mirror of https://github.com/TREX-CoE/fparser.git synced 2024-10-02 06:21:08 +02:00
This commit is contained in:
Ravindra Shinde 2021-03-26 06:17:26 +01:00
parent 7241cbe670
commit eb771bc0f6
2 changed files with 4 additions and 15 deletions

View File

@ -100,7 +100,7 @@
`energy_tol = fdf_get('energy_tol', 0.00001d0)`
9. Floats/integers/strings/booleans can be parsed generically using the interface `fdf_get()` function.
9. Floats/integers/strings/booleans can be parsed generically using the interface `fdf_get()` function. Strings are limited to 132 characters per line.
` sr_tau = fdf_get('sr_tau', 0.025d0)`
@ -206,5 +206,7 @@
## Demonstration
In the `parser` folder, we have included a sample `interface.F90` and `m_keywords.F90` files. In the `interface.F90` file, we have demonstrated how keyword-values pairs, simple data blocks, and data from external files can be read easily.
In the `parser` folder, we have included a sample `interface.F90` and `m_keywords.F90` files.
In the `interface.F90` file, we have demonstrated how keyword-values pairs, simple data blocks,
and data from external files can be read easily.

View File

@ -1,13 +0,0 @@
FC = ifort
FCFLAGS = -O2
LIBS = -L/usr/local/lib
INCLUDES = -I/usr/local/include
LDFLAGS = /usr/local/lib/libfdf.a
SOURCE = iochamp.f90
MODULES = m_periodic_table.F90 m_keywords.F90
OBJECTS = m_periodic_table.o m_keywords.o
PROJECT = iochamp.o