Skip to contents

$$rvu_{total} = rvu_{w}(gpci_{w}) + rvu_{pe}(gpci_{pe}) + rvu_{mp}(gpci_{mp})$$

Usage

calculate_amounts(wrvu, fprvu, nprvu, mrvu, wgpci, pgpci, mgpci, cf = 32.7442)

Arguments

wrvu

<dbl> Work RVU

fprvu

<dbl> Facility Practice Expense RVU

nprvu

<dbl> Non-Facility Practice Expense RVU

mrvu

<dbl> Malpractice RVU

wgpci

<dbl> Work GPCI

pgpci

<dbl> Practice Expense GPCI

mgpci

<dbl> Malpractice GPCI

cf

<dbl> Conversion Factor, default is 32.7442

Value

A list (invisibly) of the Participating, Non-Participating & Limiting Charge Amounts for both Facility & Non-Facility RVUs

Details

((wRVU x wGPCI) + (pRVU x pGPCI) + (mRVU x mGPCI)) x Conversion Factor

Examples

calculate_amounts(
   wrvu  = 6.26,
   nprvu = 7.92,
   fprvu = 4.36,
   mrvu  = 0.99,
   wgpci = 1.053,
   pgpci = 0.883,
   mgpci = 1.125,
   cf    = 32.7442)
#> Facility Amounts:
#> 
#> RVU Total ............ 11.56
#> Participating ........ $378.37
#> Non-Particpating ..... $359.45
#> Limiting Charge ...... $413.37
#> 
#> Non-Facility Amounts:
#> 
#> RVU Total ............ 14.70
#> Participating ........ $481.30
#> Non-Particpating ..... $457.24
#> Limiting Charge ...... $525.82