##########################################################################
#    This is the charge file for the				         #
#       >>>> British Telecom (Feb/1998)	<<<<				 #
#    According to http://www.shop-athome.bt.com/home/pricing/intro.htm	 #
#    See also http://www.magsys.co.uk/telecom/				 #
#    Hint for that link from 'bt-costs.c' (part of 'pppcosts' by	 #
#    Tillmann Steinbrecher)						 #
#    Author: Volker B"orchers <boercher@physik.uni-bremen.de>	         #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#
# This file is a part of tcharge, version 1.3, 11MAY98			 #
# Copyright (C) 1997,98 Volker B"orchers (boercher@physik.uni-bremen.de) #
# See file `tcharge.c' for legal affairs.				 #
##########################################################################

## Format for Variables:
#########################
#  VARIABLENAME=VALUE   (One each line, var.-names are not case-sensitive!)

## Comments:
#############
#  * everything after the "comment char" `#' is ignored
#  * you may include empty lines to improve readability

############################################
## Global Variables ("Per second billing") #
############################################
billing_per_unit = false
billing_per_second = true
currency_name = ""  # A Pound symbol - requires 8-bit-prove programs
charge_date = "Feb 1998"
decimals = 2
minimal_charge = 0.05
currency_after_charge = false
zone_help_string = "-zone <n>         n = 0) Local (default), 1) Regional, 2) National"
# (Sorry, `zone_help_string' MUST be one line!)

## Public holidays:
###################
# cited from website:
# -------------------
# "Normal charges apply on all Bank Holidays, except certain days during
# Christmas and New Year, when lower rates may apply during the day."
# -> not implemented yet

holidays = 0,358

# (sorted, comma-separated list of days since January 1, in the
# range 0 to 365. Has to be one line!)
# Holidays 1997:
#   0     Jan, 1: new year
#   358   Dec, 25: christmas
#   Sorry, not more known

## Discount schemes:
#####################
#reduction_second = 0.0  # uncomment THIS line
# AND one of the following lines if you need it. You may also have
# different schemes in different zones if you put one of these
# definitions in between a BEGIN-END pair.
#reduction_ratio = 0.9	  # friends & family only (10%)
#reduction_ratio = 0.85   # premier line only (15%)
#reduction_ratio = 0.75   # family with premier line (25%)
#reduction_ratio = 0.89	  # option15 only (11%)
#reduction_ratio = 0.79	  # option15 with friends & family (21%)


##################################################
## Time/Charge Definitions (not case-sensitive)  #
##################################################
## Format:
#     BEGIN
#     "Local" variable declarations (optional)
#     00:00    <sec>  #-> Begin of time band     the price per second (or
#     <hh:mm>  <sec>  #				 length of one unit for "per
#        .       .    #                              unit billing")
#        .       .
#     END

##
## Local
##
BEGIN
# Saturday and Sunday
    00:00	0.01
# Working days
    00:00	0.0165
    08:00	0.0395
    18:00	0.0165
END

##
## Regional (less than 35 miles)
##
BEGIN
# Saturday and Sunday
    00:00	0.0295
# Working days
    00:00	0.0395
    08:00	0.0791
    18:00	0.0395
END

##
## National (more than 35 miles)
##
BEGIN
# Saturday and Sunday
    00:00	0.0295
# Working days
    00:00	0.0418
    08:00	0.0791
    18:00	0.0418
END