From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: time tracking math is confusing Date: Wed, 5 Feb 2014 11:29:58 -0500 (EST) Message-ID: Reply-To: Ken Mankoff Mime-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50752) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WB5MY-0004ee-7u for emacs-orgmode@gnu.org; Wed, 05 Feb 2014 11:30:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WB5MP-00018F-Qp for emacs-orgmode@gnu.org; Wed, 05 Feb 2014 11:30:10 -0500 Received: from mail-ob0-x22e.google.com ([2607:f8b0:4003:c01::22e]:42304) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WB5MP-00014L-KO for emacs-orgmode@gnu.org; Wed, 05 Feb 2014 11:30:01 -0500 Received: by mail-ob0-f174.google.com with SMTP id uy5so690651obc.5 for ; Wed, 05 Feb 2014 08:30:00 -0800 (PST) Received: from gorgonzola.whoi.edu (gorgonzola.whoi.edu. [128.128.28.197]) by mx.google.com with ESMTPSA id o6sm170874589oel.4.2014.02.05.08.29.59 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 05 Feb 2014 08:30:00 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org-mode I hope there a general rule I'm missing or something I'm doing wrong, because I find the time tracking math in Org confusing. It seems that numbers I enter (ex: 8:00, 5d) are in units of 8-hour days. But math that Org does is in units of 24 hour days. So If I have * Task :PROPERTIES: :ID: test-task :END: ** SubTask 1 :PROPERTIES: :Effort: 5d :END: ** SubTask 2 :PROPERTIES: :Effort: 8:00 :END: Then the total work is 6 days (8 hour units, 48 hours) or 2d (24 hour units, 48 hours). This makes sense to me so far. When I make a time tracking table (i'm not sure of the function name, but C-c C-x i and then enter "test-task" at the prompt, I see the following table: #+BEGIN: <> | Task | Effort | |--------------+---------+ | * Task | 2d 0:00 | | ** SubTask 1 | 5d | | ** SubTask 2 | 8:00 | #+END: This is confusing because the units (24 hour, 8 hour) are mixed. The top row entry, "2d", is 24 hour units, but immedediately below it, the "5d" entry is in 8 hour units, as is the 8:00 effort below that. I can work in either unit, but mixing is confusing. It seems human-entered times and estimates are 8 hour, and Org-calculated is 24 hour. Is this always correct? The issue then is that there is no clear indicator of what is human and what is Org on this table. -k.