Module:Infobox ET: Difference between revisions

From Xenharmonic Wiki
Jump to navigation Jump to search
Fredg999 (talk | contribs)
m Display fifth size in decimal
Fredg999 (talk | contribs)
m Bug fixing
Line 10: Line 10:
end
end
local step_size = i._backslash_ratio('1\\' .. tuning)
local step_size = i._backslash_ratio('1\\' .. tuning)
local fifth = u._round(math.log(1.5)/math.log(equave)*size, 0)
local fifth = math.floor(math.log(1.5)/math.log(equave)*size+0.5)
return '<div style="\n' ..
return '<div style="\n' ..
'border: 1px solid #999;\n' ..
'border: 1px solid #999;\n' ..

Revision as of 03:53, 22 August 2022

Module documentation[view] [edit] [history] [purge]
Note: Do not invoke this module directly; use the corresponding template instead: Template:Infobox ET.

This module automatically fills in information about a specified equal temperament tuning.


local p = {}
local i = require('Module:Interval')
local u = require('Module:Utils')

function p.infobox_ET(frame)
	local tuning = frame.args['tuning']
	local size, equave = i.parse_ET(tuning)
	if equave == 2 then
		tuning = size
	end
	local step_size = i._backslash_ratio('1\\' .. tuning)
	local fifth = math.floor(math.log(1.5)/math.log(equave)*size+0.5)
	return '<div style="\n' ..
	'border: 1px solid #999;\n' ..
	'margin: 0;\n' ..
	'margin-left: 1em;\n' ..
	'margin-bottom: 0.5em;\n' ..
	'padding: 0.5em;\n' ..
	'background-color: #f0f0f0;\n' ..
	'min-width: 15em;\n' ..
	'float: right;\n' ..
	'">\n' ..
	'{| width="100%" style="border-collapse: collapse;"\n' ..
	'|+ style="font-weight: bold" | ' .. frame.args['tuning'] .. '\n' ..
	'|-\n' ..
	'| style="text-align:right; padding-right: 0.25em" | Prime factorization\n' ..
	'| style="background-color: white; padding-left: 0.25em; font-weight: bold" | ' .. u._prime_factorization(size) .. '\n' ..
	'|-\n' ..
	'| style="text-align:right; padding-right: 0.25em" | Step size\n' ..
	'| style="background-color: white; padding-left: 0.25em; font-weight: bold" | ' .. i._to_cents(step_size, 6) .. \n' ..
	'|-\n' ..
	'| style="text-align:right; padding-right: 0.25em" | Fifth\n' ..
	'| style="background-color: white; padding-left: 0.25em; font-weight: bold" | ' .. string.format("%d", fifth) .. '\\' .. tuning .. ' (' .. i._to_cents(i._backslash_ratio(fifth .. '\\' .. tuning), 6) .. '¢)\n' ..
	'|}</div>'
end

return p