expanison_coef_export.py 703 B

12345678910111213141516171819202122232425
  1. from charged_shells import expansion, parameters
  2. from pathlib import Path
  3. import json
  4. import numpy as np
  5. def main():
  6. with open(Path("/home/andraz/ChargedShells/charged-shells/config.json")) as config_file:
  7. config_data = json.load(config_file)
  8. abar = np.array([0.2, 0.3, 0.4, 0.5, 0.5, 0.7, 0.8])
  9. params = parameters.ModelParams(kappaR=3, R=150)
  10. ex = expansion.MappedExpansionDipole(abar, params.kappaR, 0.001, 30)
  11. print(ex.coefs.shape)
  12. l_arr, m_arr = ex.lm_arrays
  13. lm = np.stack((l_arr, m_arr)).T
  14. print(lm.shape)
  15. np.savez(Path(config_data["expansion_data"]).joinpath("janus.npz"), abar=abar, lm=lm, coefs=ex.coefs)
  16. if __name__ == '__main__':
  17. main()