/*----------------------------------------------------------------------------------------- * Copyright (C) 2013 For the list of authors, see file AUTHORS. * * This file is part of DENISE. * * DENISE is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2.0 of the License only. * * DENISE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with DENISE. See file COPYING and/or <http://www.gnu.org/licenses/gpl-2.0.html>.-----------------------------------------------------------------------------------------*//* $Id: av_rho.c,v 1.1.1.1 2007/11/21 22:44:52 koehn Exp $*/#include "fd.h"voidav_rho(float**rho,float**rip,float**rjp){externintNX,NY;inti,j;for(j=1;j<=NY;j++){for(i=1;i<=NX;i++){rjp[j][i]=1.0/(0.5*(rho[j][i]+rho[j+1][i]));rip[j][i]=1.0/(0.5*(rho[j][i]+rho[j][i+1]));}}}