Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
subroutine distributiondisp(distributionin, output)

  use ids_schemas

  implicit none

integer,parameter :: DP=kind(1.0D0)

type (ids_distribution_sources) :: distributionin
  integer, intent(out)            :: output

  output = int( distributionin%time(1) )  ! we are reading data from the IDS and return it back to Kepler

  return
end subroutine

Once we compile the code and regenerate actor again

Code Block
> make clean
> make second
> fc2k distribution_disp_fc2k.xml
> kepler

we can run workflow again. This time, the value is coming from the IDS.

Image Added