fork download
  1. #!/bin/bash
  2.  
  3. # ideone boilerplate - we can't write files in the home directory;
  4. # so create a temporary directory for our files instead
  5. t=$(mktemp -d -t ideone.XXXXXXXXXXXX) || exit
  6. trap 'rm -rf "$t"' ERR EXIT
  7. cd "$t"
  8.  
  9. cat <<\: >model.mo
  10. unmodified line
  11. you could say that moduleName = "control" and you would be right
  12. fnord.CombiTimeTable solar_data(columns = {2}', 1000!)
  13. fnord.CombiTimeTable ev_data(columns = {2}', 9999!)
  14. Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)
  15. :
  16.  
  17. cat <<\:> prog.py
  18. with open('model.mo') as modelica:
  19. script = modelica.read()
  20. # did you really want a space instead of an underscore in 'control 4'?
  21. for i in ['control_1', 'control_2', 'control_3', 'control 4']:
  22. ivar = script.replace(
  23. 'moduleName = "control"',
  24. # guessing you wanted to keep the double quotes around the name here
  25. f'moduleName = "control_{i}"')
  26. for j in [3, 7]:
  27. jvar = ivar.replace(
  28. '.CombiTimeTable solar_data(columns = {2}',
  29. f'.CombiTimeTable solar_data(columns = {{{j}}}')
  30. for k in [2000000000, 4000000000, 6000000000]:
  31. kvar = jvar.replace(
  32. 'Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)',
  33. f'Storage.Battery BESS(EMax = {k}, SOC_start = 0.5, pf = 0.9)')
  34. for l in ['4', '8']:
  35. lvar = kvar.replace(
  36. '.CombiTimeTable ev_data(columns = {2}',
  37. # guessing you meant to keep the braces, and you wanted l, not i?
  38. f'.CombiTimeTable ev_data(columns = {{{l}}}')
  39. # Guessing as to what exactly the file name should be
  40. with open(f'child_model_{i}_{j}_{k}_{l}.mo', 'w') as child:
  41. child.write(lvar)
  42. :
  43.  
  44. python3 prog.py
  45.  
  46. tail child_model_*
  47.  
Success #stdin #stdout 0.04s 9272KB
stdin
Standard input is empty
stdout
==> child_model_control_1_3_2000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_3_2000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_3_4000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_3_4000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_3_6000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_3_6000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_7_2000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_7_2000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_7_4000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_7_4000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_7_6000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_1_7_6000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_1" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_3_2000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_3_2000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_3_4000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_3_4000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_3_6000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_3_6000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_7_2000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_7_2000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_7_4000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_7_4000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_7_6000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_2_7_6000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_2" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_3_2000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_3_2000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_3_4000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_3_4000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_3_6000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_3_6000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_7_2000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_7_2000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_7_4000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_7_4000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_7_6000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control_3_7_6000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control_3" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_3_2000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_3_2000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_3_4000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_3_4000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_3_6000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_3_6000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {3}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_7_2000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_7_2000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 2000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_7_4000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_7_4000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 4000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_7_6000000000_4.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {4}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)

==> child_model_control 4_7_6000000000_8.mo <==
unmodified line
you could say that moduleName = "control_control 4" and you would be right
fnord.CombiTimeTable solar_data(columns = {7}', 1000!)
fnord.CombiTimeTable ev_data(columns = {8}', 9999!)
Storage.Battery BESS(EMax = 6000000000, SOC_start = 0.5, pf = 0.9)