Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
S
src
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
H5hut
src
Commits
cdf1ce5e
Commit
cdf1ce5e
authored
Sep 21, 2006
by
gsell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src/H5BlockF90.inc
- all (:,:,:) and (:) changed to (*)
parent
0ca05f63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
src/H5BlockF90.inc
src/H5BlockF90.inc
+13
-13
No files found.
src/H5BlockF90.inc
View file @
cdf1ce5e
...
...
@@ -39,30 +39,30 @@
INTEGER
*
8
FUNCTION
h5bl_3d_read_scalar_field
(
filehandle
,
name
,
data
)
INTEGER
*
8
,
INTENT
(
IN
)
::
filehandle
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
name
INTEGER
*
8
,
INTENT
(
OUT
)
::
data
(
:
,
:
,
:
)
REAL
*
8
,
INTENT
(
OUT
)
::
data
(
*
)
END
FUNCTION
INTEGER
*
8
FUNCTION
h5bl_3d_write_scalar_field
(
filehandle
,
name
,
data
)
INTEGER
*
8
,
INTENT
(
IN
)
::
filehandle
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
name
INTEGER
*
8
,
INTENT
(
IN
)
::
data
(
:
,
:
,
:
)
INTEGER
*
8
,
INTENT
(
IN
)
::
data
(
*
)
END
FUNCTION
INTEGER
*
8
FUNCTION
h5bl_3d_read_3dvector_field
(
filehandle
,
name
,
x
,
y
,
z
)
INTEGER
*
8
,
INTENT
(
IN
)
::
filehandle
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
name
INTEGER
*
8
,
INTENT
(
OUT
)
::
x
(
:
,
:
,
:
)
INTEGER
*
8
,
INTENT
(
OUT
)
::
y
(
:
,
:
,
:
)
INTEGER
*
8
,
INTENT
(
OUT
)
::
z
(
:
,
:
,
:
)
INTEGER
*
8
,
INTENT
(
OUT
)
::
x
(
*
)
INTEGER
*
8
,
INTENT
(
OUT
)
::
y
(
*
)
INTEGER
*
8
,
INTENT
(
OUT
)
::
z
(
*
)
END
FUNCTION
INTEGER
*
8
FUNCTION
h5bl_3d_write_3dvector_field
(
filehandle
,
name
,
x
,
y
,
z
)
INTEGER
*
8
,
INTENT
(
IN
)
::
filehandle
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
name
INTEGER
*
8
,
INTENT
(
IN
)
::
x
(
:
,
:
,
:
)
INTEGER
*
8
,
INTENT
(
IN
)
::
y
(
:
,
:
,
:
)
INTEGER
*
8
,
INTENT
(
IN
)
::
z
(
:
,
:
,
:
)
INTEGER
*
8
,
INTENT
(
IN
)
::
x
(
*
)
INTEGER
*
8
,
INTENT
(
IN
)
::
y
(
*
)
INTEGER
*
8
,
INTENT
(
IN
)
::
z
(
*
)
END
FUNCTION
INTEGER
*
8
FUNCTION
h5bl_getnumfields
(
filehandle
)
...
...
@@ -74,7 +74,7 @@
INTEGER
*
8
,
INTENT
(
IN
)
::
idx
CHARACTER
(
LEN
=*
),
INTENT
(
OUT
)
::
field_name
INTEGER
*
8
,
INTENT
(
OUT
)
::
grid_rank
INTEGER
*
8
,
INTENT
(
OUT
)
::
grid_dims
(
:
)
INTEGER
*
8
,
INTENT
(
OUT
)
::
grid_dims
(
*
)
INTEGER
*
8
,
INTENT
(
OUT
)
::
field_dims
END
FUNCTION
...
...
@@ -82,7 +82,7 @@
INTEGER
*
8
,
INTENT
(
IN
)
::
filehandle
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
field_name
!
The
name
of
the
field
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
attrib_name
!
The
name
of
the
attribute
REAL
*
8
,
INTENT
(
IN
)
::
attrib_value
(
:
)
!
The
array
of
data
to
write
into
the
attribute
REAL
*
8
,
INTENT
(
IN
)
::
attrib_value
(
*
)
!
The
array
of
data
to
write
into
the
attribute
INTEGER
*
8
,
INTENT
(
IN
)
::
attrib_nelem
!
Number
of
elements
in
the
attrib
array
END
FUNCTION
...
...
@@ -90,7 +90,7 @@
INTEGER
*
8
,
INTENT
(
IN
)
::
filehandle
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
field_name
!
The
name
of
the
field
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
attrib_name
!
The
name
of
the
attribute
INTEGER
*
8
,
INTENT
(
IN
)
::
attrib_value
(
:
)
!
The
array
of
data
to
write
into
the
attribute
INTEGER
*
8
,
INTENT
(
IN
)
::
attrib_value
(
*
)
!
The
array
of
data
to
write
into
the
attribute
INTEGER
*
8
,
INTENT
(
IN
)
::
attrib_nelem
!
Number
of
elements
in
the
attrib
array
END
FUNCTION
...
...
@@ -118,14 +118,14 @@
INTEGER
*
8
,
INTENT
(
IN
)
::
filehandle
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
field_name
!
The
name
of
the
field
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
attrib_name
!
name
of
the
attribute
to
read
INTEGER
*
8
,
INTENT
(
OUT
)
::
attrib_value
(
:
)
!
the
attribute
data
will
be
read
into
this
array
INTEGER
*
8
,
INTENT
(
OUT
)
::
attrib_value
(
*
)
!
the
attribute
data
will
be
read
into
this
array
END
FUNCTION
INTEGER
*
8
FUNCTION
h5bl_readfieldattrib_r8
(
filehandle
,
field_name
,
attrib_name
,
attrib_value
)
INTEGER
*
8
,
INTENT
(
IN
)
::
filehandle
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
field_name
!
The
name
of
the
field
CHARACTER
(
LEN
=*
),
INTENT
(
IN
)
::
attrib_name
!
name
of
the
attribute
to
read
REAL
*
8
,
INTENT
(
OUT
)
::
attrib_value
(
:
)
!
the
attribute
data
will
be
read
into
this
array
REAL
*
8
,
INTENT
(
OUT
)
::
attrib_value
(
*
)
!
the
attribute
data
will
be
read
into
this
array
END
FUNCTION
INTEGER
*
8
FUNCTION
h5bl_readfieldattrib_string
(
filehandle
,
field_name
,
attrib_name
,
attrib_value
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment