config = utils.load_config() # Decide whether to use an exponentially tapered if args.withexptaper: config.parameters["disk_type"]["value"] = "exptaper" # Decide whether to do continuum subtraction or not. if args.withcontsub: config.parameters["docontsub"]["value"] = True # Read in the data. visibilities, images, spectra = utils.load_data(config, model="flared") ################################################################################ # # Fit the model to the data. # ################################################################################ # Set up the emcee run. ndim = 0 keys = [] for key in sorted(config.parameters.keys()): if not config.parameters[key]["fixed"]: ndim += 1
# Read in the data. # ################################################################################ # Import the configuration file information. config = utils.load_config() # Deprecated option to include an expontial taper on the disk. if args.withexptaper: config.parameters["disk_type"]["value"] = "exptaper" # Read in the data. visibilities, images, spectra = utils.load_data(config) ################################################################################ # # Fit the model to the data. # ################################################################################ # Set up the emcee run. ndim = 0 keys = [] for key in sorted(config.parameters.keys()): if not config.parameters[key]["fixed"]: ndim += 1