Spaces:
Runtime error
Runtime error
File size: 1,189 Bytes
b13fa7f c041c09 b13fa7f c041c09 b13fa7f cb82053 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | # Simulation constraints
import numpy as np
np.random.seed(42)
SIM_DAYS = 730
HISTO_DAYS = 365
N_SIMULATIONS = 100
MC_SIMS = 1000
# Replenishment constraints & constants
WRITE_OFF_RATE = 0.00143 # ~0.143% daily spoilage (≈ 1% per week)
WRITE_OFF_FREQUENCY = 1 # applied every day
# Economic parameters
UNIT_COST = 10.0 # purchase cost per unit
SELLING_PRICE = 25.0 # revenue per unit sold
FIXED_ORDER_COST = 150.0 # fixed cost per order placed
# Stock constraints
LEAD_TIME = 3
LEAD_TIME_JITTER = 1 # ±1 day randomness on lead time
BASE_STOCK = 0
DEFAULT_SERVICE_LEVEL = 0.95
# Demand constraints
SHAPE_GAMMA_POISSON = np.random.uniform(6, 8) # 7
SCALE_GAMMA_POISSON = np.random.uniform(14, 18) # 16
LAMBDA_GAMMA_POISSON = np.random.uniform(75, 85) # 80
SHAPE_GAMMA_GAMMA_LOW_MEAN = np.random.uniform(6, 8) # 7
SCALE_GAMMA_GAMMA_LOW_MEAN = np.random.uniform(2, 4) # 3
SHAPE_GAMMA_GAMMA_HIGH_MEAN = np.random.uniform(6, 8) # 7
SCALE_GAMMA_GAMMA_HIGH_MEAN = np.random.uniform(28, 30) # 29
SHAPE_GAMMA_LOW_VAR = np.random.uniform(6, 8) # 7
SCALE_GAMMA_LOW_VAR = np.random.uniform(14, 18) # 16
RATE_SPORADIC_HIGH = np.random.uniform(0.005, 0.1) # 0.05
|