Hello!
I have a problem allocating derived datatypes.
My setup reads as followed:
I have a module_gv in which my derived datatype is declared like this:
type, public :: w_field, sequence
double precision :: wx,wy,wz
end type w_field
type(w_field),allocatable,dimension(:,:,:) :: w
then in the...