Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NP_TMcode
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Giacomo Mulas
NP_TMcode
Commits
9f251cf0
Commit
9f251cf0
authored
1 year ago
by
Giovanni La Mura
Browse files
Options
Downloads
Patches
Plain Diff
Add a FORTRAN binary I/O callback
parent
7294984d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sphere/file_io.f
+33
-0
33 additions, 0 deletions
src/sphere/file_io.f
with
33 additions
and
0 deletions
src/sphere/file_io.f
0 → 100644
+
33
−
0
View file @
9f251cf0
SUBROUTINE
OPEN_FILE
(
UID
,
NAME
,
STA
,
MODE
)
INTEGER
,
INTENT
(
IN
)::
UID
CHARACTER
*
64
,
INTENT
(
IN
)::
NAME
CHARACTER
*
8
,
INTENT
(
IN
)::
STA
CHARACTER
*
12
,
INTENT
(
IN
)::
MODE
OPEN
(
UNIT
=
UID
,
FILE
=
NAME
,
STATUS
=
STA
(
1
:
7
),
FORM
=
MODE
(
1
:
11
))
END
SUBROUTINE
CLOSE_FILE
(
UID
)
INTEGER
,
INTENT
(
IN
)::
UID
CLOSE
(
UID
)
END
SUBROUTINE
READ_INT
(
UID
,
VALUE
)
INTEGER
,
INTENT
(
IN
)::
UID
INTEGER
,
INTENT
(
OUT
)::
VALUE
READ
(
UID
)
VALUE
END
SUBROUTINE
WRITE_COMPLEX
(
UID
,
RVAL
,
IVAL
)
INTEGER
,
INTENT
(
IN
)::
UID
REAL
*
8
,
INTENT
(
IN
)::
RVAL
,
IVAL
COMPLEX
*
16
::
VALUE
VALUE
=
COMPLEX
(
RVAL
,
IVAL
)
WRITE
(
UID
)
VALUE
END
SUBROUTINE
WRITE_DOUBLE
(
UID
,
VALUE
)
INTEGER
,
INTENT
(
IN
)::
UID
REAL
*
8
,
INTENT
(
IN
)::
VALUE
WRITE
(
UID
)
VALUE
END
SUBROUTINE
WRITE_INT
(
UID
,
VALUE
)
INTEGER
,
INTENT
(
IN
)::
UID
INTEGER
,
INTENT
(
IN
)::
VALUE
WRITE
(
UID
)
VALUE
END
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment