From 5720e9d63828351c3cc471c569c0223590d8805a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franck=20P=C3=A9rignon?= <franck.perignon@imag.fr> Date: Fri, 7 Dec 2012 15:43:39 +0000 Subject: [PATCH] fix scales2py error --- HySoP/hysop/f2py/scales2py.f90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HySoP/hysop/f2py/scales2py.f90 b/HySoP/hysop/f2py/scales2py.f90 index d1579839c..40c8fff1e 100755 --- a/HySoP/hysop/f2py/scales2py.f90 +++ b/HySoP/hysop/f2py/scales2py.f90 @@ -23,7 +23,7 @@ contains integer(ik), dimension(dim), intent(out) :: offset character(len=*), optional :: order real(pk), optional, intent(out) :: stab_coeff - !f2py optional , depend(resolution) :: dim=len(resolution) + !f2py optional , depend(ncells) :: dim=len(ncells) !f2py intent(hide) dim !f2py character(*) optional, intent(in) :: order = 'p_O2' @@ -48,7 +48,7 @@ contains call cart_create(dims,error) call set_group_size(groupSize) ! Create meshes - call discretisation_create(resolution(1),resolution(2),resolution(3),lengths(1),lengths(2),lengths(3)) + call discretisation_create(ncells(1),ncells(2),ncells(3),lengths(1),lengths(2),lengths(3)) ! Init advection solver call advec_init(order,stab_coeff) -- GitLab