Commit 98928cd6c5c3cb7e4ecd3892a0fb54f6af1370ba
1 parent
cfcbcb46
Exists in
proximity_effects
Minor update to proximity_effects branch
Showing
2 changed files
with
10 additions
and
3 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | +cd COAX_OVER_GROUND_FASTHENRY ; ./generate_spice_cable_bundle_model run ; cd .. | |
| 2 | +cd COAX_OVER_GROUND_FASTHENRY_2 ; ./generate_spice_cable_bundle_model run ; cd .. | |
| 3 | +cd SPACEWIRE_STP ; ./generate_spice_cable_bundle_model run ; cd .. | |
| 4 | +cd THREE_RECTANGLES ; ./generate_spice_cable_bundle_model run ; cd .. | |
| 5 | +cd TWINAX ; ./generate_spice_cable_bundle_model run ; cd .. | |
| 6 | +cd TWISTED_PAIR ; ./generate_spice_cable_bundle_model run ; cd .. | |
| 7 | +cd TWO_CYLINDRICAL_WIRES_SEPARATION_TEST ; ./generate_spice_cable_bundle_model run ; cd .. | |
| 8 | +cd TWO_RECTANGULAR_WIRES_SEPARATION_TEST ; ./generate_spice_cable_bundle_model run ; cd .. | ... | ... |
SRC/PUL_PARAMETER_CALCULATION/PUL_RL_FastHenry2.F90
| ... | ... | @@ -363,9 +363,8 @@ integer :: ierr |
| 363 | 363 | |
| 364 | 364 | local_line_length=len(trim(line)) |
| 365 | 365 | |
| 366 | -! Changed to avoid compilation warning | |
| 367 | -! freq_and_dim_string=line(33:local_line_length) | |
| 368 | - freq_and_dim_string(1:local_line_length-32)=line(33:local_line_length) | |
| 366 | +! The following line needs to be changed to avoid a compilation warning | |
| 367 | + freq_and_dim_string=line(33:local_line_length) | |
| 369 | 368 | |
| 370 | 369 | ! write(*,*)'reading matrix for:',trim(freq_and_dim_string) |
| 371 | 370 | ... | ... |