Fortran 2003 is a major revision of Fortran 95 introducing many new features. It's successor is Fortran 2008.
0
votes
0answers
33 views
Why isn't the size specifier working in my FORTRAN inquire statement?
I am trying to work with FORTRAN INQUIRE and the relatively new SIZE specifier, and getting some curious results.
My test code:
program howbig
integer :: fsize=0
logical ex
character*64 :: ...
0
votes
1answer
66 views
speed of procedure functions versus subroutines
The standard line on OOP features in Fortran is that they are good for readability and re-use, but bad for execution time. I'm getting mixed results when I test it.
I wrote a simple dummy program to ...
1
vote
1answer
61 views
Fortran: pointer to various array-valued functions
I am starting this thread because I want to learn how to successfully use the same pointer to serve as the aliases of different array-valued functions, say, f1 and f2, sequentially.
Here is an ...
0
votes
0answers
52 views
Conditionally associating procedure pointers in fortran modules
I am trying to implement a Fortran 90/95/2003 subroutine that does some conditional association of procedure pointers based on a choice parameter. I have abstracted the code that I am building to the ...
0
votes
1answer
89 views
How is a c_ptr assigned in Fortran?
Given a Fortran derived type with a field which is a c_ptr (from iso_c_binding) and two variables A and B of said type, how is the assignment A = B defined? If the pointers were fortran pointers, they ...
0
votes
1answer
50 views
Fortran extend extended type
I want to extend a type that already extends a type. I know, that when I have an extended type I can write
type o1
...
type, extends(o1) :: o2
...
type(Object1) :: o1
allocate(o2::o1)
How does ...
3
votes
1answer
90 views
Fortran2003: procedure pointer to a function returning a pointer to a polymorphic type
For a new project, I am considering using the object-oriented features of Fortran2003. One thing I tried involves a procedure pointer which points to a function (not subroutine) which returns a ...
2
votes
1answer
102 views
C+Fortran why sigsegv?
I have a following code in Fortran and with C "master". It gives sigsegv, but I do not understand why. It is supposed to take a pointer from the master C program convert it to Fortran pointer format, ...
1
vote
1answer
99 views
Can a scalar C function be called from Fortran with array arguments?
I recently came across a situation where I wanted to call a C function from Fortran, because of a useful snippet of C code. For convenience in array operations, I wanted to be able to call this ...
3
votes
2answers
252 views
accessing unsigned integer values in fortran
If I have a c_int8_t variable in Fortran and want to interpret the underlying bits as an unsigned integer (for indexing rather than for any arithmetic) what is the most efficient way to do the ...
0
votes
1answer
133 views
Double linked list in Fortran (type is not judged correctly)
I would like to implement a generic double linked list in Fortran for saving codes, using PGI Fortran compiler version 12.10-0 in Mac OS X 10.8.2. Here is my prototype, including 3 files:
---> File ...
1
vote
2answers
183 views
Generic procedures in fortran 2003
I know that fortran has the concept of a generic procedure allowing users to define several specific procedures and collecting their interfaces in an interface block. What is not clear to me however ...
0
votes
1answer
120 views
Testing for null argument in Fortran 2003
I have declared a recursive type:
type treeNode
private
class(treeNode), pointer :: left => null()
class(treeNode), pointer :: right => null()
contains
procedure, non_overridable ...
2
votes
2answers
541 views
How to access (dynamically allocated) Fortran arrays in C
My main question is why arrays do such weird things and whether there is any way at all to do the following in a "clean" way.
I currently have a C program foo.c interfacing a Fortran program bar.f90 ...
3
votes
1answer
171 views
having generic internal procedure with ifort compiler
The following works with gfortran or f95, but not with ifort:
interface add
procedure addr, addi
end interface add
real a, b
integer i, j
data a, b, i, j /1.0, 2.0, 1, 2/
call ...
3
votes
1answer
206 views
File IO using polymorphic datatypes in Fortran
I am writing a library for importing geometries of many types (spheres,planes,NURBS surfaces, stl files...) into a scientific Fortran code. This kind of problem seems taylor-made for OOP because it is ...
1
vote
3answers
63 views
How to specify procedures to be executed depending on data type of variable
I'm writing a module that access images and reads pixel values. The values in the images are usually of different data types (integer(2), integer(4), ...). Up to now, type image is defined in the ...
3
votes
1answer
471 views
Generic type-bound procedures with procedure arguments
I am trying to write a generic type-bound procedure that takes different callback functions as parameters. When compiling following code (with ifort 12.1.3) I get the warning below:
module test
type ...
1
vote
2answers
345 views
Passing type bound procedures as arguments in fortran 90
I am trying to pass a type bound procedure as an argument to another subroutine. I want to know if this is possible in fortran 90. Here is a code snippet that shows what I am trying to do .
module ...
1
vote
1answer
108 views
fortran extended types over different modules
With extended types in Fortran should a private component by visible to a type extension in a different module.
With both gcc4.7 and ifort the following code results in a error since bName is in both ...
2
votes
1answer
230 views
No virtual destructors in fortran 2003?
Do I understand correctly that there are no virtual destructors in F2k3 ?
stefanos-imac:oop borini$ cat a.f90
module AModule
type :: AType
contains
final :: A_dtor
end type
...
3
votes
1answer
735 views
Full object oriented example with fortran 2003?
Can anyone please give me an example on how is it supposed to be for a simple Fortran 2003 Object oriented layout equivalent to this C++ code:
stefanos-imac:tmp borini$ more Animal.h
class Animal {
...
5
votes
1answer
209 views
A good OOP design for a solver with modern Fortran
I am designing a Fortran code for solving a PDE system.
The way it is designed right now is that I have a type Variable that has several attributes, the most important of which is the array val that ...
6
votes
1answer
709 views
Current best method for wrapping Modern Fortran code with Python
I know of, and have used f2py2e to wrap some old Fortran 77 code, but my understanding is that it does not work with newer Fortran 95 code. I've researched what I should use, and have come across ...
0
votes
1answer
228 views
Overloaded functions returning pointers to a base type alongside an abstract interface in fortran 2003?
I'm writing a linked list structure in Fortran2003. The nodes in this linked list come in two varieties that alternate. The list represents a topological ring of edges, each edge is bounded by two ...
0
votes
1answer
171 views
OOP Fortran: saving pointers to intent(IN) variables
I have a Fortran module that I want to organize following OOP philosophy as much as possible, while still making it compatible with Fortran 2003. This module basically: (a) allocs/frees temporary ...
0
votes
1answer
695 views
How do I overload an operator for a derived type which extends an abstract type?
I take an example from "Fortran 95/2003 explained" by Metcalf et al, since m own code aims for the same thing.
type, abstract :: my_numeric_type
contains
private
procedure(op2), deferred :: ...
1
vote
1answer
136 views
Many alternative Fortran interfaces to single C function with iso_c_bindings
Is it possible to generate more than one Fortran 2003 interface to a single C function / procedure using intrinsic iso_c_bindings module?
I would like to have alternate interfaces for situation where ...
1
vote
2answers
742 views
How to do allocation of pointers in subroutines when using OpenMP?
As the following code sample shows, the main program tries to utilize OpenMP to call a subroutine. In that subroutine, a local pointer variable is created and iterated. The program generates Subscript ...
2
votes
0answers
354 views
How to deallocate in a polymorphic way in Fortran 2003?
Before trying to implement a user-derived type hierarchy, I am trying to understand polymorphic deallocation using Fortran 2003 features. The ideal goal is to figure out how to deallocate a ...
5
votes
1answer
270 views
Automatic generation of Fortran 2003 bindings from C library headers (using iso_c_bindings intrinsic module)
Is there a tool to automatically generate Fortan bindings from C library header, using intrinsic iso_c_bindings module from Fortran 2003 standard?
I am not interested in translating C to Fortran, but ...
