Skip to content

Commit 5cf1418

Browse files
committed
First pass using typos tool
1 parent 7232323 commit 5cf1418

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+140
-140
lines changed

atm/private/atm_t_tau_uniform.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ subroutine build_T_tau_uniform( &
329329

330330
g = cgrav*M/(R*R)
331331

332-
! Allocte atm_structure at its initial size
332+
! Allocate atm_structure at its initial size
333333

334334
allocate(atm_structure(num_results_for_build_atm,INIT_NUM_PTS))
335335

atm/private/atm_t_tau_varying.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ subroutine build_T_tau_varying( &
588588

589589
g = cgrav*M/(R*R)
590590

591-
! Allocte atm_structure at its initial size
591+
! Allocate atm_structure at its initial size
592592

593593
allocate(atm_structure(num_results_for_build_atm,INIT_NUM_PTS))
594594

atm/private/table_atm.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ subroutine load_atm_table(iZ,ierr)
543543
write(*,'(A)')
544544
write(*,'(A)')
545545
write(*,'(A)')
546-
write(*,*) 'FATAL ERROR: out-of-date verion of atm data.'
546+
write(*,*) 'FATAL ERROR: out-of-date version of atm data.'
547547
write(*,*) 'Please update by removing the directory mesa/data/atm_data,'
548548
write(*,*) 'and rerunning the mesa ./install script.'
549549
write(*,'(A)')

binary/private/binary_ctrls_io.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -758,12 +758,12 @@ subroutine get_binary_control(b, name, val, ierr)
758758
call set_binary_controls_for_writing(b, ierr)
759759
if(ierr/=0) return
760760

761-
! Write namelist to temporay file
761+
! Write namelist to temporary file
762762
open(newunit=iounit,status='scratch')
763763
write(iounit,nml=binary_controls)
764764
rewind(iounit)
765765

766-
! Namelists get written in captials
766+
! Namelists get written in capitals
767767
upper_name = StrUpCase(name)
768768
val = ''
769769
! Search for name inside namelist

binary/private/binary_evolve.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ subroutine binarydata_init(b, doing_restart)
123123
end if
124124
end if
125125

126-
! Set all parameters nessessary for integration over the binary orbit
126+
! Set all parameters necessary for integration over the binary orbit
127127
! 1) true anomaly = polar angle from periastron 0 -> 2pi
128128
do i = 1,b% anomaly_steps
129129
b% theta_co(i) = (i-1) * (2 * pi) / b% anomaly_steps
@@ -445,7 +445,7 @@ integer function binary_check_model(b)
445445
if (new_mdot > 0) then
446446
new_mdot = 0.0d0
447447
write(*,*) "WARNING: explicit computation of mass transfer results in accreting donor"
448-
write(*,*) "Not transfering mass"
448+
write(*,*) "Not transferring mass"
449449
end if
450450
! smooth out the changes in mdot
451451
new_mdot = b% cur_mdot_frac*b% mtransfer_rate + (1-b% cur_mdot_frac)*new_mdot

binary/private/binary_jdot.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ subroutine default_jdot_mb(binary_id, ierr)
290290
end if
291291
else if (.not. (apply_jdot_mb .or. b% keep_mb_on) .and. b% using_jdot_mb_old(b% d_i)) then
292292
! required mdot for the implicit scheme may drop drastically,
293-
! so its neccesary to increase change factor to avoid implicit
293+
! so its necessary to increase change factor to avoid implicit
294294
! scheme from getting stuck
295295
b% change_factor = b% max_change_factor
296296
b% using_jdot_mb(b% d_i) = .false.
@@ -320,7 +320,7 @@ subroutine default_jdot_mb(binary_id, ierr)
320320
end if
321321
else if (.not. (apply_jdot_mb .or. b% keep_mb_on) .and. b% using_jdot_mb_old(b% a_i)) then
322322
! required mdot for the implicit scheme may drop drastically,
323-
! so its neccesary to increase change factor to avoid implicit
323+
! so its necessary to increase change factor to avoid implicit
324324
! scheme from getting stuck
325325
b% change_factor = b% max_change_factor
326326
b% using_jdot_mb(b% a_i) = .false.

binary/private/binary_job_ctrls_io.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,12 @@ subroutine get_binary_job(b, name, val, ierr)
282282
call set_binary_job_controls_for_writing(b, ierr)
283283
if(ierr/=0) return
284284

285-
! Write namelist to temporay file
285+
! Write namelist to temporary file
286286
open(newunit=iounit,status='scratch')
287287
write(iounit,nml=binary_job)
288288
rewind(iounit)
289289

290-
! Namelists get written in captials
290+
! Namelists get written in capitals
291291
upper_name = StrUpCase(name)
292292
val = ''
293293
! Search for name inside namelist

binary/private/binary_mdot.f90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ integer function check_implicit_rlo(binary_id, new_mdot)
120120
if (b% point_mass_i /= 0) then
121121
new_mdot = 0d0
122122
write(*,*) "WARNING: contact scheme requires evolve_both_stars=.true."
123-
write(*,*) "Not transfering mass"
123+
write(*,*) "Not transferring mass"
124124
return
125125
end if
126126
q = b% m(b% a_i) / b% m(b% d_i)
@@ -646,12 +646,12 @@ subroutine rlo_mdot(binary_id, mdot, ierr) ! Adapted from a routine kindly provi
646646

647647
if (b% mdot_scheme == "roche_lobe") then
648648
write(*,*) "mdot_scheme = roche_lobe not applicable for explicit scheme"
649-
write(*,*) "Not transfering mass"
649+
write(*,*) "Not transferring mass"
650650
mdot = 0
651651
return
652652
else if (b% mdot_scheme /= "Ritter" .and. b% mdot_scheme /= "Kolb" .and. b% mdot_scheme /= "Arras") then
653653
write(*,*) "mdot_scheme = " , b% mdot_scheme , " not recognized"
654-
write(*,*) "Not transfering mass"
654+
write(*,*) "Not transferring mass"
655655
mdot = 0
656656
return
657657
end if

binary/private/run_binary_support.f90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ end subroutine extras_binary_controls
431431

432432
id = b% star_ids(j)
433433

434-
! Avoid repeting the accretor when using the implicit scheme plus
434+
! Avoid repeating the accretor when using the implicit scheme plus
435435
! rotation and implicit winds. When this happens the accretor won't
436436
! usually care about the result of the evolution of the donor.
437437
if (j == b% a_i .and. b% num_tries >0 .and. s% was_in_implicit_wind_limit) &
@@ -498,7 +498,7 @@ end subroutine extras_binary_controls
498498
end do
499499
end if
500500

501-
! do not evolve binary step on failure, its unnecesary and some variables are not properly
501+
! do not evolve binary step on failure, its unnecessary and some variables are not properly
502502
! set when the newton solver fails.
503503
if (result == keep_going) then
504504
if (.not. b% CE_flag) then
@@ -584,7 +584,7 @@ end subroutine extras_binary_controls
584584
end if
585585
id = b% star_ids(i)
586586

587-
! Avoid repeting the accretor when using the implicit scheme plus
587+
! Avoid repeating the accretor when using the implicit scheme plus
588588
! rotation and implicit winds. When this happens the accretor won't
589589
! usually care about the result of the evolution of the donor.
590590

binary/public/binary_def.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module binary_def
4949
integer, parameter :: b_Tlim_dm = b_Tlim_ecc + 1
5050
integer, parameter :: b_numTlim = b_Tlim_dm
5151

52-
character (len=24) :: binary_dt_why_str(b_numTlim) ! indicates the reson for the timestep choice
52+
character (len=24) :: binary_dt_why_str(b_numTlim) ! indicates the reason for the timestep choice
5353

5454
!interfaces for procedure pointers
5555
abstract interface

0 commit comments

Comments
 (0)